Fix 32-bit/64-bit bug in format string.

Approved by:	re
Submitted by:	marcel
Pointy hat to:	green
This commit is contained in:
Robert Watson 2002-12-02 13:25:01 +00:00
parent de726134c8
commit c19f6f99f1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107513

View File

@ -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);
}