From 75f5203b04d78ac555161bc219da58cbfeffefbd Mon Sep 17 00:00:00 2001 From: gad Date: Sun, 15 Jul 2001 00:09:46 +0000 Subject: Fix most of the warnings generated by compiling lpr with -Wnon-const-format, often by just telling gcc that some internal routine is "__printflike" (work done by Kris Kennaway ). Also fix the new warnings which show up once gcc starts checking the "printf-like parameters" passed to those routines. MFC after: 1 week --- usr.sbin/lpr/lpq/lpq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/lpr/lpq') diff --git a/usr.sbin/lpr/lpq/lpq.c b/usr.sbin/lpr/lpq/lpq.c index 96f5d8e..734750d 100644 --- a/usr.sbin/lpr/lpq/lpq.c +++ b/usr.sbin/lpr/lpq/lpq.c @@ -152,7 +152,7 @@ looperr: case PCAPERR_SUCCESS: break; default: - fatal(pp, pcaperr(status)); + fatal(pp, "%s", pcaperr(status)); } } while (more && status); } @@ -162,7 +162,7 @@ looperr: init_printer(pp); status = getprintcap(printer, pp); if (status < 0) - fatal(pp, pcaperr(status)); + fatal(pp, "%s", pcaperr(status)); displayq(pp, lflag); } -- cgit v1.1