diff options
author | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-31 12:06:57 +0000 |
---|---|---|
committer | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-31 12:06:57 +0000 |
commit | 36921818548ae954c3a5f3d92612c112b27b9ce6 (patch) | |
tree | a992ea502ffa824f3ed17e160af73e1bbfb95879 /coreutils/du.c | |
parent | 39d1185b3a90d4486843895f8009d3f90cdf4cff (diff) | |
download | busybox-w32-36921818548ae954c3a5f3d92612c112b27b9ce6.tar.gz busybox-w32-36921818548ae954c3a5f3d92612c112b27b9ce6.tar.bz2 busybox-w32-36921818548ae954c3a5f3d92612c112b27b9ce6.zip |
avoid signed<->unsigned warning
git-svn-id: svn://busybox.net/trunk/busybox@13756 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-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 */ | |||
56 | #endif | 56 | #endif |
57 | 57 | ||
58 | static int max_print_depth = INT_MAX; | 58 | static int max_print_depth = INT_MAX; |
59 | static int count_hardlinks = 1; | 59 | static nlink_t count_hardlinks = 1; |
60 | 60 | ||
61 | static int status | 61 | static int status |
62 | #if EXIT_SUCCESS == 0 | 62 | #if EXIT_SUCCESS == 0 |