patch-2.4.27 linux-2.4.27/fs/xfs/xfs_arch.h
Next file: linux-2.4.27/fs/xfs/xfs_attr.c
Previous file: linux-2.4.27/fs/xfs/xfs_acl.h
Back to the patch index
Back to the overall index
- Lines: 28
- Date:
2004-08-07 16:26:06.107406481 -0700
- Orig file:
linux-2.4.26/fs/xfs/xfs_arch.h
- Orig date:
2004-02-18 05:36:32.000000000 -0800
diff -urN linux-2.4.26/fs/xfs/xfs_arch.h linux-2.4.27/fs/xfs/xfs_arch.h
@@ -157,11 +157,11 @@
/* does not return a value */
#define INT_MOD_EXPR(reference,arch,code) \
- (void)(((arch) == ARCH_NOCONVERT) \
+ (((arch) == ARCH_NOCONVERT) \
? \
- ((reference) code) \
+ (void)((reference) code) \
: \
- ( \
+ (void)( \
(reference) = INT_GET((reference),arch) , \
((reference) code), \
INT_SET(reference, arch, reference) \
@@ -187,10 +187,10 @@
/* does not return a value */
#define INT_COPY(dst,src,arch) \
- (void)( \
+ ( \
((sizeof(dst) == sizeof(src)) || ((arch) == ARCH_NOCONVERT)) \
? \
- ((dst) = (src)) \
+ (void)((dst) = (src)) \
: \
INT_SET(dst, arch, INT_GET(src, arch)) \
)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)