aboutsummaryrefslogtreecommitdiff
path: root/editors/diff.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-23 22:31:52 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-23 22:31:52 +0000
commitcc3f20b9bdf9a46c41877dab4900eb2997b72019 (patch)
tree4447fc490a0f65921d5c324283da20c837121535 /editors/diff.c
parent211b59be431350b2cc6685f5365ad5e6b597dc18 (diff)
downloadbusybox-cc3f20b9bdf9a46c41877dab4900eb2997b72019.tar.gz
fix breakage found by randomconfig
Diffstat (limited to 'editors/diff.c')
-rw-r--r--editors/diff.c4
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 {
} while (0)
-/*static void print_only(const char *path, size_t dirlen, const char *entry)*/
+#if ENABLE_FEATURE_DIFF_DIR
static void print_only(const char *path, const char *entry)
{
printf("Only in %s: %s\n", path, entry);
}
+#endif
-/*static void print_status(int val, char *path1, char *path2, char *entry)*/
static void print_status(int val, char *_path1, char *_path2)
{
/*const char *const _entry = entry ? entry : "";*/