From 57545c810a1d0e0783b71d1ba74af45063e2fa42 Mon Sep 17 00:00:00 2001 From: "\"Vladimir N. Oleynik\"" Date: Tue, 31 Jan 2006 12:06:57 +0000 Subject: avoid signed<->unsigned warning --- coreutils/du.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/du.c') diff --git a/coreutils/du.c b/coreutils/du.c index 3778f0895..d453ba412 100644 --- a/coreutils/du.c +++ b/coreutils/du.c @@ -56,7 +56,7 @@ static unsigned int disp_k; /* bss inits to 0 */ #endif static int max_print_depth = INT_MAX; -static int count_hardlinks = 1; +static nlink_t count_hardlinks = 1; static int status #if EXIT_SUCCESS == 0 -- cgit v1.2.3-55-g6feb