[PATCH] ufs: fix char vs. __s8 clash in ufs
authorAndreas Schwab <schwab@suse.de>
Fri, 3 Feb 2006 11:04:12 +0000 (03:04 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Fri, 3 Feb 2006 16:32:05 +0000 (08:32 -0800)
commit9d923a0603b5909a6758cfaec503955775cb7ab1
tree5aa12488890ed9d4be2fb86eb54622d4d4a61f94
parent90cbc45b1d8a81e661a981ddd69f95d6915f1574
[PATCH] ufs: fix char vs. __s8 clash in ufs

Fix this warning:

fs/ufs/super.c: In function â\80\98ufs_fill_superâ\80\99:
fs/ufs/super.c:858: warning: case label value exceeds maximum value for type

which happens because __s8 != char.  These macros are used for struct
ufs_super_block.fs_clean which is declared as __s8.

Signed-off-by: Andreas Schwab <schwab@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
include/linux/ufs_fs.h