svn commit: r328104 - head/usr.sbin/kldxref

John Baldwin jhb at FreeBSD.org
Thu Jan 18 00:24:07 UTC 2018


Author: jhb
Date: Thu Jan 18 00:24:05 2018
New Revision: 328104
URL: https://svnweb.freebsd.org/changeset/base/328104

Log:
  Adjust format string to fix build.

Modified:
  head/usr.sbin/kldxref/ef_powerpc.c

Modified: head/usr.sbin/kldxref/ef_powerpc.c
==============================================================================
--- head/usr.sbin/kldxref/ef_powerpc.c	Thu Jan 18 00:23:11 2018	(r328103)
+++ head/usr.sbin/kldxref/ef_powerpc.c	Thu Jan 18 00:24:05 2018	(r328104)
@@ -67,7 +67,7 @@ ef_reloc(struct elf_file *ef, const void *reldata, int
 		*where = relbase + addend;
 		break;
 	default:
-		warnx("unhandled relocation type %lu", rtype);
+		warnx("unhandled relocation type %u", rtype);
 	}
 	return (0);
 }


More information about the svn-src-head mailing list