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 /modutils/insmod.c | |
parent | f6efccc0659a2e2978f2021153f34ce92257ad2b (diff) | |
download | busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.zip busybox-a60f84ebf07863e390b72a2b6150e461a1ec18e9.tar.gz |
*: rename ATTRIBUTE_XXX to just XXX.
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 8217629..d928be2 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -792,8 +792,8 @@ static char *m_fullName; static int FAST_FUNC check_module_name_match(const char *filename, - struct stat *statbuf ATTRIBUTE_UNUSED, - void *userdata, int depth ATTRIBUTE_UNUSED) + struct stat *statbuf UNUSED_PARAM, + void *userdata, int depth UNUSED_PARAM) { char *fullname = (char *) userdata; char *tmp; @@ -3306,7 +3306,7 @@ static int obj_create_image(struct obj_file *f, char *image) /*======================================================================*/ -static struct obj_file *obj_load(FILE *fp, int loadprogbits ATTRIBUTE_UNUSED) +static struct obj_file *obj_load(FILE *fp, int loadprogbits UNUSED_PARAM) { struct obj_file *f; ElfW(Shdr) * section_headers; @@ -4211,9 +4211,9 @@ static const char *moderror(int err) #if !ENABLE_FEATURE_2_4_MODULES int insmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; -int insmod_main(int argc ATTRIBUTE_UNUSED, char **argv) +int insmod_main(int argc UNUSED_PARAM, char **argv) #else -static int insmod_ng_main(int argc ATTRIBUTE_UNUSED, char **argv) +static int insmod_ng_main(int argc UNUSED_PARAM, char **argv) #endif { size_t len; |