projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a4e55ab
)
start_stop_daemon: mark argc as unused
author
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 19 Apr 2008 17:40:29 +0000
(17:40 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 19 Apr 2008 17:40:29 +0000
(17:40 -0000)
debianutils/start_stop_daemon.c
patch
|
blob
|
history
diff --git
a/debianutils/start_stop_daemon.c
b/debianutils/start_stop_daemon.c
index a2679f33112d39d20ae0541509ff45821014d7ed..601fd72fa6a3f875c5fb8ff28db394602be2a4ca 100644
(file)
--- a/
debianutils/start_stop_daemon.c
+++ b/
debianutils/start_stop_daemon.c
@@
-250,7
+250,7
@@
enum {
};
int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int start_stop_daemon_main(int argc, char **argv)
+int start_stop_daemon_main(int argc
ATTRIBUTE_UNUSED
, char **argv)
{
unsigned opt;
char *signame;
@@
-292,7
+292,7
@@
int start_stop_daemon_main(int argc, char **argv)
// if (retry_arg)
// retries = xatoi_u(retry_arg);
// )
- argc -= optind;
+
//
argc -= optind;
argv += optind;
if (userspec) {