diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-05 09:18:54 +0000 |
commit | a60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch) | |
tree | f59bc665cfe3d2d32622450d80523e3c1265e501 /runit/runsvdir.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.bz2 busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index df6b8869d..aaa4c470c 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c | |||
@@ -89,11 +89,11 @@ static void warnx(const char *m1) | |||
89 | warn3x(m1, "", ""); | 89 | warn3x(m1, "", ""); |
90 | } | 90 | } |
91 | 91 | ||
92 | static void s_term(int sig_no ATTRIBUTE_UNUSED) | 92 | static void s_term(int sig_no UNUSED_PARAM) |
93 | { | 93 | { |
94 | exitsoon = 1; | 94 | exitsoon = 1; |
95 | } | 95 | } |
96 | static void s_hangup(int sig_no ATTRIBUTE_UNUSED) | 96 | static void s_hangup(int sig_no UNUSED_PARAM) |
97 | { | 97 | { |
98 | exitsoon = 2; | 98 | exitsoon = 2; |
99 | } | 99 | } |
@@ -229,7 +229,7 @@ static int setup_log(void) | |||
229 | } | 229 | } |
230 | 230 | ||
231 | int runsvdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 231 | int runsvdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
232 | int runsvdir_main(int argc ATTRIBUTE_UNUSED, char **argv) | 232 | int runsvdir_main(int argc UNUSED_PARAM, char **argv) |
233 | { | 233 | { |
234 | struct stat s; | 234 | struct stat s; |
235 | dev_t last_dev = last_dev; /* for gcc */ | 235 | dev_t last_dev = last_dev; /* for gcc */ |