diff options
Diffstat (limited to 'df.c')
-rw-r--r-- | df.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -64,17 +64,14 @@ static int df(char *device, const char *mountPoint) | |||
64 | #ifdef BB_FEATURE_HUMAN_READABLE | 64 | #ifdef BB_FEATURE_HUMAN_READABLE |
65 | switch (disp_hr) { | 65 | switch (disp_hr) { |
66 | case MEGABYTE: | 66 | case MEGABYTE: |
67 | fprintf(stderr, "got MEGABYTE\n"); | ||
68 | divisor = KILOBYTE; | 67 | divisor = KILOBYTE; |
69 | base = KILOBYTE; | 68 | base = KILOBYTE; |
70 | break; | 69 | break; |
71 | case KILOBYTE: | 70 | case KILOBYTE: |
72 | fprintf(stderr, "got KILOBYTE\n"); | ||
73 | divisor = KILOBYTE; | 71 | divisor = KILOBYTE; |
74 | base = 1; | 72 | base = 1; |
75 | break; | 73 | break; |
76 | default: | 74 | default: |
77 | fprintf(stderr, "got something else\n"); | ||
78 | divisor = KILOBYTE; | 75 | divisor = KILOBYTE; |
79 | base = 0; | 76 | base = 0; |
80 | } | 77 | } |