diff options
author | Aaron Lehmann <aaronl@vitelius.com> | 2002-08-23 07:28:45 +0000 |
---|---|---|
committer | Aaron Lehmann <aaronl@vitelius.com> | 2002-08-23 07:28:45 +0000 |
commit | 5d3cb7cc1f2e3219279ccc791eae9625e0b52449 (patch) | |
tree | e7d323a3dc01713729218eae9ab2b06d62a27590 | |
parent | 8042f65398adafbe7931646b0d8833f7b650d010 (diff) | |
download | busybox-w32-5d3cb7cc1f2e3219279ccc791eae9625e0b52449.tar.gz busybox-w32-5d3cb7cc1f2e3219279ccc791eae9625e0b52449.tar.bz2 busybox-w32-5d3cb7cc1f2e3219279ccc791eae9625e0b52449.zip |
move some globals to bss
-rw-r--r-- | coreutils/du.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index 39241a283..2e49b2147 100644 --- a/coreutils/du.c +++ b/coreutils/du.c | |||
@@ -37,9 +37,9 @@ | |||
37 | static unsigned long disp_hr = KILOBYTE; | 37 | static unsigned long disp_hr = KILOBYTE; |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | static int du_depth = 0; | 40 | static int du_depth /*= 0*/; |
41 | static int count_hardlinks = 0; | 41 | static int count_hardlinks /*= 0*/; |
42 | static int one_file_system = 0; | 42 | static int one_file_system /*= 0*/; |
43 | static dev_t dir_dev; | 43 | static dev_t dir_dev; |
44 | 44 | ||
45 | static void (*print) (long, char *); | 45 | static void (*print) (long, char *); |
@@ -186,7 +186,7 @@ int du_main(int argc, char **argv) | |||
186 | return status; | 186 | return status; |
187 | } | 187 | } |
188 | 188 | ||
189 | /* $Id: du.c,v 1.54 2002/08/23 03:25:22 bug1 Exp $ */ | 189 | /* $Id: du.c,v 1.55 2002/08/23 07:28:45 aaronl Exp $ */ |
190 | /* | 190 | /* |
191 | Local Variables: | 191 | Local Variables: |
192 | c-file-style: "linux" | 192 | c-file-style: "linux" |