Fix func prototype
[oweals/busybox.git] / df.c
diff --git a/df.c b/df.c
index 80b7acb28843a78f29c5f045c71ede841cf2dd01..0d1e17608108a0f3065281544a25921a3dc73bcb 100644 (file)
--- 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;
                }