aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-02-20 23:05:06 +0000
committerRob Landley <rob@landley.net>2006-02-20 23:05:06 +0000
commit0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f (patch)
treeaab524d6a9ad034eb5f84dfdb5e41b4e51c1a6cd /scripts
parent06249fee39c8415355203e8fbef89c3e3918b986 (diff)
downloadbusybox-0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f.tar.gz
Rename UNUSE() to SKIP().
Diffstat (limited to 'scripts')
-rw-r--r--scripts/config/confdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/config/confdata.c b/scripts/config/confdata.c
index a866deb45..c87124584 100644
--- a/scripts/config/confdata.c
+++ b/scripts/config/confdata.c
@@ -454,7 +454,7 @@ int conf_write(const char *name)
fprintf(out_h, "#define ENABLE_%s %d\n", opt_name, use_flg);
fprintf(out_h, "#define USE_%s(...)%s\n", opt_name,
(use_flg ? " __VA_ARGS__" : ""));
- fprintf(out_h, "#define UNUSE_%s(...)%s\n\n", opt_name,
+ fprintf(out_h, "#define SKIP_%s(...)%s\n\n", opt_name,
(use_flg ? "" : " __VA_ARGS__"));
}
/* end busybox`s code */