diff options
author | Roland McGrath <roland@gnu.org> | 2000-03-10 04:54:55 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-03-10 04:54:55 +0000 |
commit | 9823009459d091ec9a8be8d4c66ba73633587544 (patch) | |
tree | aab7da530972d5e09c43d3f84db229d288f7e26e /ext2fs/ialloc.c | |
parent | 2d72dc7d14cbd567340622c0f773932faba10704 (diff) | |
download | hurd-9823009459d091ec9a8be8d4c66ba73633587544.tar.gz hurd-9823009459d091ec9a8be8d4c66ba73633587544.tar.bz2 hurd-9823009459d091ec9a8be8d4c66ba73633587544.zip |
2000-03-09 Roland McGrath <roland@baalperazim.frob.com>
* balloc.c (ext2_free_blocks, ext2_new_block): Fix formats to avoid
-Wformat warnings.
* getblk.c (ext2_alloc_block, inode_getblk, ext2_getblk): Likewise.
* ialloc.c (ext2_count_free_inodes): Likewise.
* truncate.c (trunc_direct): Likewise.
* pager.c (pending_blocks_write, diskfs_grow): Likewise.
Diffstat (limited to 'ext2fs/ialloc.c')
-rw-r--r-- | ext2fs/ialloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext2fs/ialloc.c b/ext2fs/ialloc.c index 2ccfb08d..de37b99e 100644 --- a/ext2fs/ialloc.c +++ b/ext2fs/ialloc.c @@ -1,8 +1,8 @@ /* Inode allocation routines. - Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc. + Copyright (C) 1995,96,99,2000 Free Software Foundation, Inc. - Converted to work under the hurd by Miles Bader <miles@gnu.ai.mit.edu> + Converted to work under the hurd by Miles Bader <miles@gnu.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -361,7 +361,7 @@ ext2_count_free_inodes () i, gdp->bg_free_inodes_count, x); bitmap_count += x; } - ext2_debug ("stored = %lu, computed = %lu, %lu", + ext2_debug ("stored = %u, computed = %lu, %lu", sblock->s_free_inodes_count, desc_count, bitmap_count); spin_unlock (&global_lock); return desc_count; |