From 121683521957e9977b03894d6576e8f26728a500 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 12 Oct 2023 17:41:11 +0200 Subject: [PATCH] Fix prefix typo in Bigendian constant define --- include/wolfboot/wolfboot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wolfboot/wolfboot.h b/include/wolfboot/wolfboot.h index 88ee03101..0b2dfb656 100644 --- a/include/wolfboot/wolfboot.h +++ b/include/wolfboot/wolfboot.h @@ -52,7 +52,7 @@ extern "C" { #endif #ifdef BIG_ENDIAN_ORDER -# define WOLFBOOT_MAGIC 0X574F4C46 /* WOLF */ +# define WOLFBOOT_MAGIC 0x574F4C46 /* WOLF */ # define WOLFBOOT_MAGIC_TRAIL 0x424F4F54 /* BOOT */ #else # define WOLFBOOT_MAGIC 0x464C4F57 /* WOLF */