From 72dc626b3d6905b105ae61ca2c60f51a6f74070e Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 2 Jun 2021 15:38:29 +0900 Subject: [PATCH] efi: include endian.h to handle endian correctly The macro __BYTE_ORDER__ is defined in endian.h. --- src/boot/efi/sha256.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/boot/efi/sha256.h b/src/boot/efi/sha256.h index 464be59c25..3a43601e73 100644 --- a/src/boot/efi/sha256.h +++ b/src/boot/efi/sha256.h @@ -1,6 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once +#include + #include #include -- 2.25.1