diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2022-05-01 17:06:00 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2022-05-01 17:06:00 +0200 |
commit | 9b6f44e0403f9214343bdafd054a628aa1506630 (patch) | |
tree | 64f7e35e2e92f8927c1f9882738b5e015dcf1f65 /printutils/lpr.c | |
parent | a157c4c978d3e984f3cb7e2fc02d5ce428d5f82e (diff) | |
download | busybox-w32-9b6f44e0403f9214343bdafd054a628aa1506630.tar.gz busybox-w32-9b6f44e0403f9214343bdafd054a628aa1506630.tar.bz2 busybox-w32-9b6f44e0403f9214343bdafd054a628aa1506630.zip |
style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'printutils/lpr.c')
-rw-r--r-- | printutils/lpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/printutils/lpr.c b/printutils/lpr.c index 77d1a79a4..d40d0a67c 100644 --- a/printutils/lpr.c +++ b/printutils/lpr.c | |||
@@ -78,8 +78,8 @@ static void get_response_or_say_and_die(int fd, const char *errmsg) | |||
78 | } | 78 | } |
79 | } | 79 | } |
80 | 80 | ||
81 | int lpqr_main(int argc, char *argv[]) MAIN_EXTERNALLY_VISIBLE; | 81 | int lpqr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
82 | int lpqr_main(int argc UNUSED_PARAM, char *argv[]) | 82 | int lpqr_main(int argc UNUSED_PARAM, char **argv) |
83 | { | 83 | { |
84 | enum { | 84 | enum { |
85 | OPT_P = 1 << 0, // -P queue[@host[:port]]. If no -P is given use $PRINTER, then "lp@localhost:515" | 85 | OPT_P = 1 << 0, // -P queue[@host[:port]]. If no -P is given use $PRINTER, then "lp@localhost:515" |