From: Andrew Jones Date: Thu, 5 Jan 2006 02:55:00 +0000 (+0000) Subject: Fix ppc64 build parse error. X-Git-Tag: v2.8.0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5305dbe33c39cf8e8ada58505d9c02d35f4b5737;p=thirdparty%2Fxfsprogs-dev.git Fix ppc64 build parse error. Merge of master-melb:xfs-cmds:24915a by kenmcd. Added missing closing ')' for line #define be16_to_cpu(val) ((__uint16_t)(val) --- diff --git a/include/xfs_arch.h b/include/xfs_arch.h index 71de20ced..c4836890b 100644 --- a/include/xfs_arch.h +++ b/include/xfs_arch.h @@ -44,7 +44,7 @@ #define cpu_to_be16(val) ((__be16)(val)) #define cpu_to_be32(val) ((__be32)(val)) #define cpu_to_be64(val) ((__be64)(val)) -#define be16_to_cpu(val) ((__uint16_t)(val) +#define be16_to_cpu(val) ((__uint16_t)(val)) #define be32_to_cpu(val) ((__uint32_t)(val)) #define be64_to_cpu(val) ((__uint64_t)(val)) #else