From 7d779d20273f42c0d713d10c667eebdb484239e7 Mon Sep 17 00:00:00 2001 From: rwatson Date: Mon, 2 Dec 2002 13:26:16 +0000 Subject: Cast argument to (long), missed in prior pass. Approved by: re Submitted by: marcel --- 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 01ab500..d55c394 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 %lu specifications", file, spec->nentries); + warnx("%s: read %lu specifications", file, (long)spec->nentries); STAILQ_INSERT_TAIL(&specs->head, spec, link); } -- cgit v1.1