diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2002-12-02 13:25:01 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2002-12-02 13:25:01 +0000 |
commit | c19f6f99f1350d9d8ff56515898d68fb213ed2ff (patch) | |
tree | fd31b4998f16c0334cb49220ef76b660f12d3f37 | |
parent | de726134c8fd14a213f9db2511ec9d733b7aaf65 (diff) | |
download | src-c19f6f99f1350d9d8ff56515898d68fb213ed2ff.tar.gz src-c19f6f99f1350d9d8ff56515898d68fb213ed2ff.zip |
Fix 32-bit/64-bit bug in format string.
Approved by: re
Submitted by: marcel
Pointy hat to: green
Notes
Notes:
svn path=/head/; revision=107513
-rw-r--r-- | usr.sbin/setfmac/setfmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/setfmac/setfmac.c b/usr.sbin/setfmac/setfmac.c index a54e29f57d3b..01ab500f144f 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); } |