diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 22:31:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 22:31:52 +0000 |
commit | cc3f20b9bdf9a46c41877dab4900eb2997b72019 (patch) | |
tree | 4447fc490a0f65921d5c324283da20c837121535 /editors | |
parent | 211b59be431350b2cc6685f5365ad5e6b597dc18 (diff) | |
download | busybox-w32-cc3f20b9bdf9a46c41877dab4900eb2997b72019.tar.gz busybox-w32-cc3f20b9bdf9a46c41877dab4900eb2997b72019.tar.bz2 busybox-w32-cc3f20b9bdf9a46c41877dab4900eb2997b72019.zip |
fix breakage found by randomconfig
Diffstat (limited to 'editors')
-rw-r--r-- | editors/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/diff.c b/editors/diff.c index 26f352780..ad089e2a6 100644 --- a/editors/diff.c +++ b/editors/diff.c | |||
@@ -161,14 +161,14 @@ struct globals { | |||
161 | } while (0) | 161 | } while (0) |
162 | 162 | ||
163 | 163 | ||
164 | /*static void print_only(const char *path, size_t dirlen, const char *entry)*/ | 164 | #if ENABLE_FEATURE_DIFF_DIR |
165 | static void print_only(const char *path, const char *entry) | 165 | static void print_only(const char *path, const char *entry) |
166 | { | 166 | { |
167 | printf("Only in %s: %s\n", path, entry); | 167 | printf("Only in %s: %s\n", path, entry); |
168 | } | 168 | } |
169 | #endif | ||
169 | 170 | ||
170 | 171 | ||
171 | /*static void print_status(int val, char *path1, char *path2, char *entry)*/ | ||
172 | static void print_status(int val, char *_path1, char *_path2) | 172 | static void print_status(int val, char *_path1, char *_path2) |
173 | { | 173 | { |
174 | /*const char *const _entry = entry ? entry : "";*/ | 174 | /*const char *const _entry = entry ? entry : "";*/ |