* include/grub/types.h: Fix functionality unaffecting typo in
authorLeif Lindholm <leif.lindholm@arm.com>
Wed, 28 Nov 2012 13:18:45 +0000 (14:18 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 28 Nov 2012 13:18:45 +0000 (14:18 +0100)
        GRUB_TARGET_WORDSIZE conditional macro.

ChangeLog
include/grub/types.h

index 1759da4..b26bfcb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-11-28  Leif Lindholm  <leif.lindholm@arm.com>
+
+        * include/grub/types.h: Fix functionality unaffecting typo in
+        GRUB_TARGET_WORDSIZE conditional macro.
+
 2012-11-28  Paulo Flabiano Smorigo  <pfsmorigo@br.ibm.com>
 
        * grub-core/net/bootp.c (parse_dhcp_vendor): Fix double increment.
index 3e677c6..22d1be7 100644 (file)
@@ -50,7 +50,7 @@
 # error "This architecture is not supported because sizeof(void *) != 4 and sizeof(void *) != 8"
 #endif
 
-#if !defined (GRUB_UTIL) & !defined (GRUB_TARGET_WORDSIZE)
+#if !defined (GRUB_UTIL) && !defined (GRUB_TARGET_WORDSIZE)
 # if GRUB_TARGET_SIZEOF_VOID_P == 4
 #  define GRUB_TARGET_WORDSIZE 32
 # elif GRUB_TARGET_SIZEOF_VOID_P == 8