diff options
author | Rob Landley <rob@landley.net> | 2006-02-20 23:05:06 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-02-20 23:05:06 +0000 |
commit | 0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f (patch) | |
tree | aab524d6a9ad034eb5f84dfdb5e41b4e51c1a6cd /scripts | |
parent | 06249fee39c8415355203e8fbef89c3e3918b986 (diff) | |
download | busybox-w32-0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f.tar.gz busybox-w32-0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f.tar.bz2 busybox-w32-0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f.zip |
Rename UNUSE() to SKIP().
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config/confdata.c | 2 |
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) | |||
454 | fprintf(out_h, "#define ENABLE_%s %d\n", opt_name, use_flg); | 454 | fprintf(out_h, "#define ENABLE_%s %d\n", opt_name, use_flg); |
455 | fprintf(out_h, "#define USE_%s(...)%s\n", opt_name, | 455 | fprintf(out_h, "#define USE_%s(...)%s\n", opt_name, |
456 | (use_flg ? " __VA_ARGS__" : "")); | 456 | (use_flg ? " __VA_ARGS__" : "")); |
457 | fprintf(out_h, "#define UNUSE_%s(...)%s\n\n", opt_name, | 457 | fprintf(out_h, "#define SKIP_%s(...)%s\n\n", opt_name, |
458 | (use_flg ? "" : " __VA_ARGS__")); | 458 | (use_flg ? "" : " __VA_ARGS__")); |
459 | } | 459 | } |
460 | /* end busybox`s code */ | 460 | /* end busybox`s code */ |