diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-03-07 06:04:08 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-03-07 06:04:08 +0000 |
commit | 137dee4c0f6b31264d23b99dcc443073c9628422 (patch) | |
tree | e53a72ff52a23bb99470f811f0a0147b9a32373d /df.c | |
parent | 28898d0f983df190c871af466b059a71576fa6f0 (diff) | |
download | busybox-w32-137dee4c0f6b31264d23b99dcc443073c9628422.tar.gz busybox-w32-137dee4c0f6b31264d23b99dcc443073c9628422.tar.bz2 busybox-w32-137dee4c0f6b31264d23b99dcc443073c9628422.zip |
Static-ify a variable. make du work with all the human-readable variants
since my last pass only fixed 'du -h' but left the others broken.
git-svn-id: svn://busybox.net/trunk/busybox@1997 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'df.c')
-rw-r--r-- | df.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | extern const char mtab_file[]; /* Defined in utility.c */ | 32 | extern const char mtab_file[]; /* Defined in utility.c */ |
33 | #ifdef BB_FEATURE_HUMAN_READABLE | 33 | #ifdef BB_FEATURE_HUMAN_READABLE |
34 | unsigned long disp_hr = KILOBYTE; | 34 | static unsigned long disp_hr = KILOBYTE; |
35 | #endif | 35 | #endif |
36 | 36 | ||
37 | static int df(char *device, const char *mountPoint) | 37 | static int df(char *device, const char *mountPoint) |