diff options
author | Roland McGrath <roland@gnu.org> | 1999-05-23 17:51:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-05-23 17:51:57 +0000 |
commit | 4c72a730cd1ce256f969ec77e3a0c8d33822537b (patch) | |
tree | b4858eae076ee2cd0ec25c5c26ec6cfc73b0ce43 /ext2fs/ialloc.c | |
parent | 17273e4e24d33ea9888f4ab322993d02eccca75a (diff) | |
download | hurd-4c72a730cd1ce256f969ec77e3a0c8d33822537b.tar.gz hurd-4c72a730cd1ce256f969ec77e3a0c8d33822537b.tar.bz2 hurd-4c72a730cd1ce256f969ec77e3a0c8d33822537b.zip |
1999-05-23 Roland McGrath <roland@baalperazim.frob.com>
* ialloc.c (diskfs_alloc_node): Frob printf format to suppress warning.
* getblk.c (ext2_getblk): Likewise.
* balloc.c (ext2_free_blocks): Likewise.
* hyper.c (get_hypermetadata): Likewise.
Diffstat (limited to 'ext2fs/ialloc.c')
-rw-r--r-- | ext2fs/ialloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/ialloc.c b/ext2fs/ialloc.c index 30807f81..716a1f7d 100644 --- a/ext2fs/ialloc.c +++ b/ext2fs/ialloc.c @@ -291,7 +291,7 @@ diskfs_alloc_node (struct node *dir, mode_t mode, struct node **node) if (st->st_blocks) { if (sblock->s_creator_os == EXT2_OS_HURD) - ext2_warning ("Free inode %d had %d blocks", inum, st->st_blocks); + ext2_warning ("Free inode %d had %ld blocks", inum, st->st_blocks); st->st_blocks = 0; np->dn_set_ctime = 1; } |