From: Milton Miller Date: Thu, 18 Nov 2010 04:20:11 +0000 (-0600) Subject: ocfs2: char is not always signed X-Git-Tag: v2.6.37-rc5~1^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2a2f55291918f6cf9287d7beaecc7bc007a9f1c;p=pandora-kernel.git ocfs2: char is not always signed Commit 1c66b360fe262 (Change some lock status member in ocfs2_lock_res to char.) states that these fields need to be signed due to comparision to -1, but only changed the type from unsigned char to char. However, it is a compiler option if char is a signed or unsigned type. Change these fields to signed char so the code will work with all compilers. Signed-off-by: Milton Miller Signed-off-by: Joel Becker --- Reading git-diff-tree failed