* include/grub/types.h: Fix functionality unaffecting typo in

GRUB_TARGET_WORDSIZE conditional macro.
This commit is contained in:
Leif Lindholm 2012-11-28 14:18:45 +01:00 committed by Vladimir 'phcoder' Serbinenko
parent 48ff08895d
commit 2f9f40ba35
2 changed files with 6 additions and 1 deletions

View 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