diff options
Diffstat (limited to 'printutils')
-rw-r--r-- | printutils/lpd.c | 2 | ||||
-rw-r--r-- | printutils/lpr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/printutils/lpd.c b/printutils/lpd.c index 916fd6213..49e3fd744 100644 --- a/printutils/lpd.c +++ b/printutils/lpd.c | |||
@@ -11,7 +11,7 @@ | |||
11 | // TODO: xmalloc_reads is vulnerable to remote OOM attack! | 11 | // TODO: xmalloc_reads is vulnerable to remote OOM attack! |
12 | 12 | ||
13 | int lpd_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; | 13 | int lpd_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; |
14 | int lpd_main(int argc, char *argv[]) | 14 | int lpd_main(int argc ATTRIBUTE_UNUSED, char *argv[]) |
15 | { | 15 | { |
16 | int spooling; | 16 | int spooling; |
17 | char *s, *queue; | 17 | char *s, *queue; |
diff --git a/printutils/lpr.c b/printutils/lpr.c index 153e6ab96..5313d5a20 100644 --- a/printutils/lpr.c +++ b/printutils/lpr.c | |||
@@ -42,7 +42,7 @@ static void get_response_or_say_and_die(int fd, const char *errmsg) | |||
42 | } | 42 | } |
43 | 43 | ||
44 | int lpqr_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; | 44 | int lpqr_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; |
45 | int lpqr_main(int argc, char *argv[]) | 45 | int lpqr_main(int argc ATTRIBUTE_UNUSED, char *argv[]) |
46 | { | 46 | { |
47 | enum { | 47 | enum { |
48 | OPT_P = 1 << 0, // -P queue[@host[:port]]. If no -P is given use $PRINTER, then "lp@localhost:515" | 48 | OPT_P = 1 << 0, // -P queue[@host[:port]]. If no -P is given use $PRINTER, then "lp@localhost:515" |