diff options
author | Rob Landley | 2006-02-20 23:05:06 +0000 |
---|---|---|
committer | Rob Landley | 2006-02-20 23:05:06 +0000 |
commit | 0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f (patch) | |
tree | aab524d6a9ad034eb5f84dfdb5e41b4e51c1a6cd /scripts/config/confdata.c | |
parent | 06249fee39c8415355203e8fbef89c3e3918b986 (diff) | |
download | busybox-0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f.zip busybox-0d8766a3b13ea2a1cbee6f7cf4001ee1c7cc402f.tar.gz |
Rename UNUSE() to SKIP().
Diffstat (limited to 'scripts/config/confdata.c')
-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 a866deb..c871245 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 */ |