diff options
author | Denis Vlasenko | 2008-07-05 09:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-07-05 09:18:54 +0000 |
commit | a60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch) | |
tree | f59bc665cfe3d2d32622450d80523e3c1265e501 /runit/runsv.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'runit/runsv.c')
-rw-r--r-- | runit/runsv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/runsv.c b/runit/runsv.c index 6981fa7..bd0f3dc 100644 --- a/runit/runsv.c +++ b/runit/runsv.c @@ -127,12 +127,12 @@ static void warn_cannot(const char *m) bb_perror_msg("%s: warning: cannot %s", dir, m); } -static void s_child(int sig_no ATTRIBUTE_UNUSED) +static void s_child(int sig_no UNUSED_PARAM) { write(selfpipe.wr, "", 1); } -static void s_term(int sig_no ATTRIBUTE_UNUSED) +static void s_term(int sig_no UNUSED_PARAM) { sigterm = 1; write(selfpipe.wr, "", 1); /* XXX */ @@ -434,7 +434,7 @@ static int ctrl(struct svdir *s, char c) } int runsv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int runsv_main(int argc ATTRIBUTE_UNUSED, char **argv) +int runsv_main(int argc UNUSED_PARAM, char **argv) { struct stat s; int fd; |