Make this WARNS=5 clean by using %j and (uintmax_t).

Look at by:	sebastian.ssmoller@web.de on audit@
This commit is contained in:
Johan Karlsson 2003-04-23 20:24:13 +00:00
parent b107cd7718
commit eb3beef5ad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113933
2 changed files with 5 additions and 3 deletions

View File

@ -27,7 +27,7 @@
#
PROG= kldstat
WARNS= 0
MAN= kldstat.8
WARNS?= 5
.include <bsd.prog.mk>

View File

@ -30,6 +30,7 @@ static const char rcsid[] =
#endif /* not lint */
#include <err.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
@ -65,8 +66,9 @@ static void printfile(int fileid, int verbose)
if (kldstat(fileid, &stat) < 0)
warn("can't stat file id %d", fileid);
else
printf("%2d %4d %p %-8x %s\n",
stat.id, stat.refs, stat.address, stat.size, stat.name);
printf("%2d %4d %p %-8jx %s\n",
stat.id, stat.refs, stat.address, (uintmax_t)stat.size,
stat.name);
if (verbose) {
printf("\tContains modules:\n");