aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorDave Chinner <david@fromorbit.com>2010-01-19 18:49:18 -0500
committerDave Chinner <david@fromorbit.com>2010-01-19 18:49:18 -0500
commit58c75cfb51393a52b45262394c1fa81514b4d9bd (patch)
tree0152d968e9a2298e4c74f8a9bae8892ce484f870 /fs
parent4a24cb71407dc25035d75dd3d118e0e55679e217 (diff)
xfs: make compile warn about char sign mismatches again
The -fno-unsigned-char directive has no effect anymore as the XFs build is clean. However, the kernel build hides pointer sign differences so turn that back on so that we can clean up all the mismatches prior to a userspace code resync. Signed-off-by: Dave Chinner <david@fromorbit.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile
index 56641fe52a23..19267019dacf 100644
--- a/fs/xfs/Makefile
+++ b/fs/xfs/Makefile
@@ -16,7 +16,7 @@
16# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17# 17#
18 18
19EXTRA_CFLAGS += -I$(src) -I$(src)/linux-2.6 -funsigned-char 19EXTRA_CFLAGS += -I$(src) -I$(src)/linux-2.6 -Wpointer-sign
20 20
21XFS_LINUX := linux-2.6 21XFS_LINUX := linux-2.6
22 22