2006-10-10 Tristan Gingold <tristan.gingold@bull.net>

* include/grub/efi/api.h (GRUB_EFI_ERROR_CODE): Long constant.
This commit is contained in:
jrydberg 2006-10-10 17:39:10 +00:00
parent ea29642a22
commit 050548d018
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-10-10 Tristan Gingold <tristan.gingold@bull.net>
* include/grub/efi/api.h (GRUB_EFI_ERROR_CODE): Long constant.
2006-10-05 Tristan Gingold <tristan.gingold@bull.net>
* kern/misc.c (grub_strtoull): Guess the base only if not

View File

@ -167,7 +167,7 @@ typedef grub_uint16_t grub_efi_char16_t;
typedef grub_efi_intn_t grub_efi_status_t;
#define GRUB_EFI_ERROR_CODE(value) \
((1 << (sizeof (grub_efi_status_t) * 8 - 1)) | (value))
((1L << (sizeof (grub_efi_status_t) * 8 - 1)) | (value))
#define GRUB_EFI_WARNING_CODE(value) (value)