summaryrefslogtreecommitdiff
path: root/lib/ext2fs/icount.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>1997-10-03 17:42:28 +0000
committerTheodore Ts'o <tytso@mit.edu>1997-10-03 17:42:28 +0000
commitd163b0948731e6d84bd3efe75075a2d0a8009272 (patch)
tree6e8b5ebe7bfe3d2523649966e7b0894a143b7f09 /lib/ext2fs/icount.c
parent00e5433eb5e9f70f485968b809fdcf297d7fe7b9 (diff)
downloade2fsprogs-d163b0948731e6d84bd3efe75075a2d0a8009272.tar.gz
ChangeLog, bmove.c, icount.c, inode.c, llseek.c:
llseek.c (ext2fs_llseek): Fix type error for ext2fs_llseek() icount.c (ext2fs_icount_validate): bmove.c (process_block): Fix lint error in type for fprintf(). inode.c (ext2fs_check_directory): Add support for the callback to return the error code EXT2_ET_CALLBACK_NOTHANDLED. ChangeLog, mke2fs.c: Make parse_raid_opts return a void, to fix a -Wall warning.
Diffstat (limited to 'lib/ext2fs/icount.c')
-rw-r--r--lib/ext2fs/icount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ext2fs/icount.c b/lib/ext2fs/icount.c
index a91496a2..4e074c00 100644
--- a/lib/ext2fs/icount.c
+++ b/lib/ext2fs/icount.c
@@ -286,7 +286,7 @@ errcode_t ext2fs_icount_validate(ext2_icount_t icount, FILE *out)
}
for (i=1; i < icount->count; i++) {
if (icount->list[i-1].ino >= icount->list[i].ino) {
- fprintf(out, "%s: list[%d].ino=%u, list[%d].ino=%u\n",
+ fprintf(out, "%s: list[%d].ino=%ld, list[%d].ino=%ld\n",
bad, i-1, icount->list[i-1].ino,
i, icount->list[i].ino);
ret = EINVAL;