From 7368b18e567d874a8dc559df21600e2ae7f053a1 Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 28 Jun 1998 21:00:04 +0000 Subject: Fixed printf format errors. --- bin/mv/mv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/mv') diff --git a/bin/mv/mv.c b/bin/mv/mv.c index 20f4a27..2718285 100644 --- a/bin/mv/mv.c +++ b/bin/mv/mv.c @@ -45,7 +45,7 @@ static char const copyright[] = static char sccsid[] = "@(#)mv.c 8.2 (Berkeley) 4/2/94"; #endif static const char rcsid[] = - "$Id: mv.c,v 1.19 1998/05/25 22:44:16 steve Exp $"; + "$Id: mv.c,v 1.20 1998/06/09 03:39:38 imp Exp $"; #endif /* not lint */ #include @@ -272,8 +272,8 @@ err: if (unlink(to)) oldmode = sbp->st_mode & ALLPERMS; if (fchown(to_fd, sbp->st_uid, sbp->st_gid)) { - warn("%s: set owner/group (was: %u/%u)", to, sbp->st_uid, - sbp->st_gid); + warn("%s: set owner/group (was: %lu/%lu)", to, + (u_long)sbp->st_uid, (u_long)sbp->st_gid); if (oldmode & (S_ISUID | S_ISGID)) { warnx( "%s: owner/group changed; clearing suid/sgid (mode was 0%03o)", -- cgit v1.1