Blame SOURCES/0056-include-grub-types.h-Fix-functionality-unaffecting-t.patch

f96e0b
From e2638674dca6e5c31624057734bff69f3bba2e80 Mon Sep 17 00:00:00 2001
f96e0b
From: Leif Lindholm <leif.lindholm@arm.com>
f96e0b
Date: Wed, 28 Nov 2012 14:18:45 +0100
f96e0b
Subject: [PATCH 056/482]         * include/grub/types.h: Fix functionality
f96e0b
 unaffecting typo in         GRUB_TARGET_WORDSIZE conditional macro.
f96e0b
f96e0b
---
f96e0b
 ChangeLog            | 5 +++++
f96e0b
 include/grub/types.h | 2 +-
f96e0b
 2 files changed, 6 insertions(+), 1 deletion(-)
f96e0b
f96e0b
diff --git a/ChangeLog b/ChangeLog
f96e0b
index 1759da4..b26bfcb 100644
f96e0b
--- a/ChangeLog
f96e0b
+++ b/ChangeLog
f96e0b
@@ -1,3 +1,8 @@
f96e0b
+2012-11-28  Leif Lindholm  <leif.lindholm@arm.com>
f96e0b
+
f96e0b
+        * include/grub/types.h: Fix functionality unaffecting typo in
f96e0b
+        GRUB_TARGET_WORDSIZE conditional macro.
f96e0b
+
f96e0b
 2012-11-28  Paulo Flabiano Smorigo  <pfsmorigo@br.ibm.com>
f96e0b
 
f96e0b
 	* grub-core/net/bootp.c (parse_dhcp_vendor): Fix double increment.
f96e0b
diff --git a/include/grub/types.h b/include/grub/types.h
f96e0b
index 3e677c6..22d1be7 100644
f96e0b
--- a/include/grub/types.h
f96e0b
+++ b/include/grub/types.h
f96e0b
@@ -50,7 +50,7 @@
f96e0b
 # error "This architecture is not supported because sizeof(void *) != 4 and sizeof(void *) != 8"
f96e0b
 #endif
f96e0b
 
f96e0b
-#if !defined (GRUB_UTIL) & !defined (GRUB_TARGET_WORDSIZE)
f96e0b
+#if !defined (GRUB_UTIL) && !defined (GRUB_TARGET_WORDSIZE)
f96e0b
 # if GRUB_TARGET_SIZEOF_VOID_P == 4
f96e0b
 #  define GRUB_TARGET_WORDSIZE 32
f96e0b
 # elif GRUB_TARGET_SIZEOF_VOID_P == 8
f96e0b
-- 
f96e0b
1.8.2.1
f96e0b