diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-19 17:40:29 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-19 17:40:29 +0000 |
| commit | 5a96c3eab63c2e3349d8bc4be471b3a730fd109b (patch) | |
| tree | 54e00780f64dfb2ef60d43078c29b7bccd9fa145 | |
| parent | a4e55ab8407563ee1ecd74a6db0e2d6fec1059f9 (diff) | |
| download | busybox-w32-5a96c3eab63c2e3349d8bc4be471b3a730fd109b.tar.gz busybox-w32-5a96c3eab63c2e3349d8bc4be471b3a730fd109b.tar.bz2 busybox-w32-5a96c3eab63c2e3349d8bc4be471b3a730fd109b.zip | |
start_stop_daemon: mark argc as unused
| -rw-r--r-- | debianutils/start_stop_daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index a2679f331..601fd72fa 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
| @@ -250,7 +250,7 @@ enum { | |||
| 250 | }; | 250 | }; |
| 251 | 251 | ||
| 252 | int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 252 | int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 253 | int start_stop_daemon_main(int argc, char **argv) | 253 | int start_stop_daemon_main(int argc ATTRIBUTE_UNUSED, char **argv) |
| 254 | { | 254 | { |
| 255 | unsigned opt; | 255 | unsigned opt; |
| 256 | char *signame; | 256 | char *signame; |
| @@ -292,7 +292,7 @@ int start_stop_daemon_main(int argc, char **argv) | |||
| 292 | // if (retry_arg) | 292 | // if (retry_arg) |
| 293 | // retries = xatoi_u(retry_arg); | 293 | // retries = xatoi_u(retry_arg); |
| 294 | // ) | 294 | // ) |
| 295 | argc -= optind; | 295 | //argc -= optind; |
| 296 | argv += optind; | 296 | argv += optind; |
| 297 | 297 | ||
| 298 | if (userspec) { | 298 | if (userspec) { |
