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; } 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; }