diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-06 20:41:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-08-06 20:41:09 +0000 |
commit | abdab9264887b198168dac150a9bbff44a774868 (patch) | |
tree | 26c311697fe239df4698e550f705fd8ef5a9a932 /sbin/fsck_ext2fs/inode.c | |
parent | cde63a0b937f284da8b2903ae196fc5bfb998ea8 (diff) |
uid_t and gid_t, and use %u
Diffstat (limited to 'sbin/fsck_ext2fs/inode.c')
-rw-r--r-- | sbin/fsck_ext2fs/inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsck_ext2fs/inode.c b/sbin/fsck_ext2fs/inode.c index 8d2ca2f891b..48c0c3fc803 100644 --- a/sbin/fsck_ext2fs/inode.c +++ b/sbin/fsck_ext2fs/inode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inode.c,v 1.4 1997/06/25 18:40:40 kstailey Exp $ */ +/* $OpenBSD: inode.c,v 1.5 1999/08/06 20:41:05 deraadt Exp $ */ /* $NetBSD: inode.c,v 1.1 1997/06/11 11:21:49 bouyer Exp $ */ /* @@ -42,7 +42,7 @@ static char sccsid[] = "@(#)inode.c 8.5 (Berkeley) 2/8/95"; #if 0 static char rcsid[] = "$NetBSD: inode.c,v 1.1 1997/06/11 11:21:49 bouyer Exp $"; #else -static char rcsid[] = "$OpenBSD: inode.c,v 1.4 1997/06/25 18:40:40 kstailey Exp $"; +static char rcsid[] = "$OpenBSD: inode.c,v 1.5 1999/08/06 20:41:05 deraadt Exp $"; #endif #endif #endif /* not lint */ @@ -535,7 +535,7 @@ pinode(ino) dp = ginode(ino); printf(" OWNER="); #ifndef SMALL - if ((pw = getpwuid((int)dp->e2di_uid)) != 0) + if ((pw = getpwuid(dp->e2di_uid)) != 0) printf("%s ", pw->pw_name); else #endif |