From 5d3cb7cc1f2e3219279ccc791eae9625e0b52449 Mon Sep 17 00:00:00 2001 From: Aaron Lehmann Date: Fri, 23 Aug 2002 07:28:45 +0000 Subject: move some globals to bss --- coreutils/du.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'coreutils') 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 @@ static unsigned long disp_hr = KILOBYTE; #endif -static int du_depth = 0; -static int count_hardlinks = 0; -static int one_file_system = 0; +static int du_depth /*= 0*/; +static int count_hardlinks /*= 0*/; +static int one_file_system /*= 0*/; static dev_t dir_dev; static void (*print) (long, char *); @@ -186,7 +186,7 @@ int du_main(int argc, char **argv) return status; } -/* $Id: du.c,v 1.54 2002/08/23 03:25:22 bug1 Exp $ */ +/* $Id: du.c,v 1.55 2002/08/23 07:28:45 aaronl Exp $ */ /* Local Variables: c-file-style: "linux" -- cgit v1.2.3