[PATCH] prevent minix_fs printk type warnings

From: Randy.Dunlap
Date: Fri Aug 22 2003 - 18:05:31 EST



Building on 64-bit (ia64) produces printk data type warnings
because ino_t is unsigned int there and unsigned long on x86.

--
~Randy


patch_name: minix_printk.patch
patch_version: 2003-08-22.15:25:32
author: Randy.Dunlap <rddunlap@xxxxxxxx>
description: prevent printk() type warnings in minix fs
product: Linux
product_versions: 260-test3
diffstat: =
fs/minix/bitmap.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)


diff -Naur ./fs/minix/bitmap.c~mnxtypes ./fs/minix/bitmap.c
--- ./fs/minix/bitmap.c~mnxtypes Fri Aug 8 21:39:25 2003
+++ ./fs/minix/bitmap.c Fri Aug 22 15:21:46 2003
@@ -116,7 +116,7 @@

if (!ino || ino > sbi->s_ninodes) {
printk("Bad inode number on dev %s: %ld is out of range\n",
- sb->s_id, ino);
+ sb->s_id, (unsigned long)ino);
return NULL;
}
ino--;
@@ -141,7 +141,7 @@
*bh = NULL;
if (!ino || ino > sbi->s_ninodes) {
printk("Bad inode number on dev %s: %ld is out of range\n",
- sb->s_id, ino);
+ sb->s_id, (unsigned long)ino);
return NULL;
}
ino--;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/