diff options
author | Roland McGrath <roland@gnu.org> | 2002-06-11 21:41:14 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-06-11 21:41:14 +0000 |
commit | 579fada1c063cbf755bdd7d43dde61c29b34e156 (patch) | |
tree | cfe6fc576d44b1c741d875544f5f6d5564b2bae2 /ufs-fsck/utilities.c | |
parent | b19c3a2f52cffed8c457b6b16f03d4e05bc96390 (diff) | |
download | hurd-579fada1c063cbf755bdd7d43dde61c29b34e156.tar.gz hurd-579fada1c063cbf755bdd7d43dde61c29b34e156.tar.bz2 hurd-579fada1c063cbf755bdd7d43dde61c29b34e156.zip |
2002-06-08 Roland McGrath <roland@frob.com>
* dir.c, pass1.c, pass2.c, utilities.c: Use %Ld for ino_t values.
Diffstat (limited to 'ufs-fsck/utilities.c')
-rw-r--r-- | ufs-fsck/utilities.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ufs-fsck/utilities.c b/ufs-fsck/utilities.c index f3a2b670..5e081fe8 100644 --- a/ufs-fsck/utilities.c +++ b/ufs-fsck/utilities.c @@ -1,5 +1,5 @@ /* Miscellaneous functions for fsck - Copyright (C) 1994, 1995, 1996, 1999, 2001 Free Software Foundation, Inc. + Copyright (C) 1994,95,96,99,2001,02 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -355,7 +355,7 @@ pinode (int severe, ino_t ino, char *fmt, ...) } if (ino < ROOTINO || ino > maxino) - pextend (" (BOGUS INODE) I=%d", ino); + pextend (" (BOGUS INODE) I=%Ld", ino); else { char *p; @@ -364,7 +364,7 @@ pinode (int severe, ino_t ino, char *fmt, ...) getinode (ino, &dino); - pextend (" %s I=%d", (DI_MODE (&dino) & IFMT) == IFDIR ? "DIR" : "FILE", + pextend (" %s I=%Ld", (DI_MODE (&dino) & IFMT) == IFDIR ? "DIR" : "FILE", ino); pw = getpwuid (dino.di_uid); |