lkml.org 
[lkml]   [2003]   [Aug]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] prevent minix_fs printk type warnings

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@osdl.org>
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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:48    [W:0.018 / U:0.176 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site