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/chown.c | 4 ++-- coreutils/dd.c | 4 ++-- coreutils/du.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'coreutils') diff --git a/coreutils/chown.c b/coreutils/chown.c index 660d08947..66add48ed 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -26,8 +26,8 @@ static int fileAction(const char *fileName, struct stat *statbuf, void ATTRIBUTE_UNUSED *junk) { if (!chown_func(fileName, - (uid == -1) ? statbuf->st_uid : uid, - (gid == -1) ? statbuf->st_gid : gid)) { + (uid == (uid_t)-1) ? statbuf->st_uid : uid, + (gid == (gid_t)-1) ? statbuf->st_gid : gid)) { return TRUE; } bb_perror_msg("%s", fileName); /* A filename could have % in it... */ diff --git a/coreutils/dd.c b/coreutils/dd.c index 9a149e24a..cba90857f 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -167,7 +167,7 @@ int dd_main(int argc, char **argv) if (n == 0) { break; } - if (n == bs) { + if ((size_t)n == bs) { in_full++; } else { in_part++; @@ -180,7 +180,7 @@ int dd_main(int argc, char **argv) if (n < 0) { bb_perror_msg_and_die("%s", outfile); } - if (n == bs) { + if ((size_t)n == bs) { out_full++; } else { out_part++; 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