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 /loginutils/login.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 'loginutils/login.c')
-rw-r--r-- | loginutils/login.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index d9a2f8a41..9c7941e0d 100644 --- a/loginutils/login.c +++ b/loginutils/login.c | |||
@@ -206,7 +206,7 @@ static void motd(void) | |||
206 | } | 206 | } |
207 | } | 207 | } |
208 | 208 | ||
209 | static void alarm_handler(int sig ATTRIBUTE_UNUSED) | 209 | static void alarm_handler(int sig UNUSED_PARAM) |
210 | { | 210 | { |
211 | /* This is the escape hatch! Poor serial line users and the like | 211 | /* This is the escape hatch! Poor serial line users and the like |
212 | * arrive here when their connection is broken. | 212 | * arrive here when their connection is broken. |
@@ -221,7 +221,7 @@ static void alarm_handler(int sig ATTRIBUTE_UNUSED) | |||
221 | } | 221 | } |
222 | 222 | ||
223 | int login_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 223 | int login_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
224 | int login_main(int argc ATTRIBUTE_UNUSED, char **argv) | 224 | int login_main(int argc UNUSED_PARAM, char **argv) |
225 | { | 225 | { |
226 | enum { | 226 | enum { |
227 | LOGIN_OPT_f = (1<<0), | 227 | LOGIN_OPT_f = (1<<0), |