aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe-small.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-05 09:18:54 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-05 09:18:54 +0000
commita60f84ebf07863e390b72a2b6150e461a1ec18e9 (patch)
treef59bc665cfe3d2d32622450d80523e3c1265e501 /modutils/modprobe-small.c
parentf6efccc0659a2e2978f2021153f34ce92257ad2b (diff)
downloadbusybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz
busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.bz2
busybox-w32-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'modutils/modprobe-small.c')
-rw-r--r--modutils/modprobe-small.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c
index bbcd9895e..6131d4280 100644
--- a/modutils/modprobe-small.c
+++ b/modutils/modprobe-small.c
@@ -301,9 +301,9 @@ static char* pathname_2_modname(const char *pathname)
301} 301}
302 302
303static FAST_FUNC int fileAction(const char *pathname, 303static FAST_FUNC int fileAction(const char *pathname,
304 struct stat *sb ATTRIBUTE_UNUSED, 304 struct stat *sb UNUSED_PARAM,
305 void *data, 305 void *data,
306 int depth ATTRIBUTE_UNUSED) 306 int depth UNUSED_PARAM)
307{ 307{
308 int cur; 308 int cur;
309 char *name; 309 char *name;
@@ -581,7 +581,7 @@ Options:
581*/ 581*/
582 582
583int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 583int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
584int modprobe_main(int ATTRIBUTE_UNUSED argc, char **argv) 584int modprobe_main(int argc UNUSED_PARAM, char **argv)
585{ 585{
586 struct utsname uts; 586 struct utsname uts;
587 char applet0 = applet_name[0]; 587 char applet0 = applet_name[0];