From c45e2b374b7fd03863e82e013fee6bc8821717a1 Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Tue, 29 Dec 2009 22:48:39 +0000 Subject: [PATCH] Linux: #if BLAH should be #if defined(BLAH) As the subject says, using #if BLAH gives warnings. Fix them in osi_ioctl.c Change-Id: Iee3da68cd29e84bd201a1ee657d3f80ca9b2f5d5 Reviewed-on: http://gerrit.openafs.org/1041 Reviewed-by: Russ Allbery Tested-by: Russ Allbery --- src/afs/LINUX/osi_ioctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/afs/LINUX/osi_ioctl.c b/src/afs/LINUX/osi_ioctl.c index 5f0a863613..45e0fcdfce 100644 --- a/src/afs/LINUX/osi_ioctl.c +++ b/src/afs/LINUX/osi_ioctl.c @@ -56,9 +56,9 @@ afs_ioctl(struct inode *inode, struct file *file, unsigned int cmd, if (cmd != VIOC_SYSCALL && cmd != VIOC_SYSCALL32) return -EINVAL; #ifdef NEED_IOCTL32 -# ifdef AFS_S390X_LINUX26_ENV +# if defined(AFS_S390X_LINUX26_ENV) if (test_thread_flag(TIF_31BIT)) -# elif AFS_AMD64_LINUX20_ENV +# elif defined(AFS_AMD64_LINUX20_ENV) if (test_thread_flag(TIF_IA32)) # else if (test_thread_flag(TIF_32BIT))