diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-31 12:06:57 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-31 12:06:57 +0000 |
commit | 57545c810a1d0e0783b71d1ba74af45063e2fa42 (patch) | |
tree | a992ea502ffa824f3ed17e160af73e1bbfb95879 /coreutils/du.c | |
parent | 4d57926bd3197a2d56267af1417189823a7ae873 (diff) | |
download | busybox-57545c810a1d0e0783b71d1ba74af45063e2fa42.tar.gz |
avoid signed<->unsigned warning
Diffstat (limited to 'coreutils/du.c')
-rw-r--r-- | coreutils/du.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |