From fd96ca8e031cd18b688d41ab6df2c9963565cfa1 Mon Sep 17 00:00:00 2001 From: rwatson Date: Mon, 2 Dec 2002 13:25:01 +0000 Subject: Fix 32-bit/64-bit bug in format string. Approved by: re Submitted by: marcel Pointy hat to: green --- usr.sbin/setfmac/setfmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/setfmac/setfmac.c') diff --git a/usr.sbin/setfmac/setfmac.c b/usr.sbin/setfmac/setfmac.c index a54e29f..01ab500 100644 --- a/usr.sbin/setfmac/setfmac.c +++ b/usr.sbin/setfmac/setfmac.c @@ -269,7 +269,7 @@ add_specs(struct label_specs *specs, const char *file, int is_sebsd) free(line); } fclose(fp); - warnx("%s: read %u specifications", file, spec->nentries); + warnx("%s: read %lu specifications", file, spec->nentries); STAILQ_INSERT_TAIL(&specs->head, spec, link); } -- cgit v1.1