aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-27 17:00:11 +0000
committerRob Landley <rob@landley.net>2006-03-27 17:00:11 +0000
commitc370ea89fa2f49c043f46d7df2a47c9827620436 (patch)
treea5287b6bcd3ecc5a8313baefb743a90157502580 /coreutils
parent8416a2d5585719266417043640ebc4016e38fdc3 (diff)
downloadbusybox-c370ea89fa2f49c043f46d7df2a47c9827620436.tar.gz
Turn #if 0 into a comment.
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/cmp.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/coreutils/cmp.c b/coreutils/cmp.c
index d0fc662a5..6c8d27a99 100644
--- a/coreutils/cmp.c
+++ b/coreutils/cmp.c
@@ -52,11 +52,8 @@ static FILE *cmp_xfopen_input(const char *filename)
static const char fmt_eof[] = "cmp: EOF on %s\n";
static const char fmt_differ[] = "%s %s differ: char %d, line %d\n";
-#if 0
-static const char fmt_l_opt[] = "%.0s%.0s%d %o %o\n"; /* SUSv3 format */
-#else
-static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; /* nicer gnu format */
-#endif
+// This fmt_l_opt uses gnu-isms. SUSv3 would be "%.0s%.0s%d %o %o\n"
+static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n";
static const char opt_chars[] = "sl";