aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chown.c
diff options
context:
space:
mode:
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
commit57545c810a1d0e0783b71d1ba74af45063e2fa42 (patch)
treea992ea502ffa824f3ed17e160af73e1bbfb95879 /coreutils/chown.c
parent4d57926bd3197a2d56267af1417189823a7ae873 (diff)
downloadbusybox-57545c810a1d0e0783b71d1ba74af45063e2fa42.tar.gz
avoid signed<->unsigned warning
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r--coreutils/chown.c4
1 files changed, 2 insertions, 2 deletions
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... */