aboutsummaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'df.c')
-rw-r--r--df.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/df.c b/df.c
index 80b7acb28..0d1e17608 100644
--- a/df.c
+++ b/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;
}