ACK: [PATCH] fwts_uefi:uefirtvariable:use sizeof() for defining long integer for fixing build failure on 32 bit systems
Colin Ian King
colin.king at canonical.com
Fri Dec 21 12:15:48 UTC 2012
On 21/12/12 07:32, Ivan Hu wrote:
> Since the define EFI_NOT_FOUND is move from uefirtvariable.c to fwts_uefi.h
> the use sizeof() to find the bit size of the long integer rather than a
> fixed value, which avoid build failure should apply on fwts_uefi.h.
>
> Signed-off-by: Ivan Hu <ivan.hu at canonical.com>
> ---
> src/lib/include/fwts_uefi.h | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/src/lib/include/fwts_uefi.h b/src/lib/include/fwts_uefi.h
> index 72d3c10..2771c55 100644
> --- a/src/lib/include/fwts_uefi.h
> +++ b/src/lib/include/fwts_uefi.h
> @@ -46,7 +46,9 @@ enum {
> FWTS_UEFI_TIME_IN_DAYLIGHT = 0x02
> };
>
> -#define HIGH_BIT_SET (1UL << 63)
> +#define BITS_PER_LONG (sizeof(long) * 8)
> +
> +#define HIGH_BIT_SET (1UL << (BITS_PER_LONG-1))
>
> #define EFI_SUCCESS 0
> #define EFI_LOAD_ERROR (1 | HIGH_BIT_SET)
>
More information about the fwts-devel
mailing list