aboutsummaryrefslogtreecommitdiff
path: root/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 /df.c
parent7c3e7ac9401ae238768ae2366728add1569052ad (diff)
downloadbusybox-w32-54006bce2515521cb1388b80e64261b2940dcff8.tar.gz
busybox-w32-54006bce2515521cb1388b80e64261b2940dcff8.tar.bz2
busybox-w32-54006bce2515521cb1388b80e64261b2940dcff8.zip
Oops! I left in my debug noise.
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)
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 }