aboutsummaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-07 06:04:08 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-07 06:04:08 +0000
commit137dee4c0f6b31264d23b99dcc443073c9628422 (patch)
treee53a72ff52a23bb99470f811f0a0147b9a32373d /df.c
parent28898d0f983df190c871af466b059a71576fa6f0 (diff)
downloadbusybox-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/df.c b/df.c
index 1f5e4b09e..9f8770fe6 100644
--- a/df.c
+++ b/df.c
@@ -31,7 +31,7 @@
31 31
32extern const char mtab_file[]; /* Defined in utility.c */ 32extern const char mtab_file[]; /* Defined in utility.c */
33#ifdef BB_FEATURE_HUMAN_READABLE 33#ifdef BB_FEATURE_HUMAN_READABLE
34unsigned long disp_hr = KILOBYTE; 34static unsigned long disp_hr = KILOBYTE;
35#endif 35#endif
36 36
37static int df(char *device, const char *mountPoint) 37static int df(char *device, const char *mountPoint)