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 /modutils/depmod.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 'modutils/depmod.c')
-rw-r--r-- | modutils/depmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/depmod.c b/modutils/depmod.c index 4fba53751..d128ac0ff 100644 --- a/modutils/depmod.c +++ b/modutils/depmod.c | |||
@@ -48,7 +48,7 @@ static char* find_keyword(void *the_module, size_t len, const char * const word) | |||
48 | return ptr; | 48 | return ptr; |
49 | } | 49 | } |
50 | static int FAST_FUNC fileAction(const char *fname, struct stat *sb, | 50 | static int FAST_FUNC fileAction(const char *fname, struct stat *sb, |
51 | void ATTRIBUTE_UNUSED *data, int ATTRIBUTE_UNUSED depth) | 51 | void UNUSED_PARAM *data, int UNUSED_PARAM depth) |
52 | { | 52 | { |
53 | size_t len = sb->st_size; | 53 | size_t len = sb->st_size; |
54 | void *the_module; | 54 | void *the_module; |
@@ -110,7 +110,7 @@ static int FAST_FUNC fileAction(const char *fname, struct stat *sb, | |||
110 | } | 110 | } |
111 | 111 | ||
112 | int depmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 112 | int depmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
113 | int depmod_main(int ATTRIBUTE_UNUSED argc, char **argv) | 113 | int depmod_main(int argc UNUSED_PARAM, char **argv) |
114 | { | 114 | { |
115 | int ret; | 115 | int ret; |
116 | size_t moddir_base_len = 0; /* length of the "-b basedir" */ | 116 | size_t moddir_base_len = 0; /* length of the "-b basedir" */ |