ACK: [PATCH] uefi: uefirtvariable: fix build failure on 32 bit systems
Alex Hung
alex.hung at canonical.com
Wed Jan 2 02:38:04 UTC 2013
On 12/20/2012 06:36 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Fix build failure on 32 bit systems cause by not using ULL.
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
> src/uefi/uefirtvariable/uefirtvariable.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/uefi/uefirtvariable/uefirtvariable.c b/src/uefi/uefirtvariable/uefirtvariable.c
> index 1599c5b..2a9db0b 100644
> --- a/src/uefi/uefirtvariable/uefirtvariable.c
> +++ b/src/uefi/uefirtvariable/uefirtvariable.c
> @@ -41,7 +41,7 @@
> }
>
> #define EFI_SUCCESS 0
> -#define EFI_NOT_FOUND (14 | (1UL << 63))
> +#define EFI_NOT_FOUND (14 | (1ULL << 63))
>
> #define MAX_DATA_LENGTH 1024
>
>
Acked-by: Alex Hung <alex.hung at canonical.com>
More information about the fwts-devel
mailing list