aboutsummaryrefslogtreecommitdiff
path: root/coreutils/df.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-21 00:27:22 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-21 00:27:22 +0000
commit54006bce2515521cb1388b80e64261b2940dcff8 (patch)
treebf13cc558ef884281bbbb9280ac34db0dcf4b47d /coreutils/df.c
parent7c3e7ac9401ae238768ae2366728add1569052ad (diff)
downloadbusybox-54006bce2515521cb1388b80e64261b2940dcff8.tar.gz
Oops! I left in my debug noise.
Diffstat (limited to 'coreutils/df.c')
-rw-r--r--coreutils/df.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/coreutils/df.c b/coreutils/df.c
index 80b7acb28..0d1e17608 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -64,17 +64,14 @@ static int df(char *device, const char *mountPoint)
#ifdef BB_FEATURE_HUMAN_READABLE
switch (disp_hr) {
case MEGABYTE:
- fprintf(stderr, "got MEGABYTE\n");
divisor = KILOBYTE;
base = KILOBYTE;
break;
case KILOBYTE:
- fprintf(stderr, "got KILOBYTE\n");
divisor = KILOBYTE;
base = 1;
break;
default:
- fprintf(stderr, "got something else\n");
divisor = KILOBYTE;
base = 0;
}