* include/grub/types.h: Fix functionality unaffecting typo in
GRUB_TARGET_WORDSIZE conditional macro.
This commit is contained in:
parent
48ff08895d
commit
2f9f40ba35
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue