We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a195efe commit 07ef67bCopy full SHA for 07ef67b
2 files changed
src/libwolfboot.c
@@ -177,7 +177,7 @@ static const uint32_t wolfboot_magic_trail = WOLFBOOT_MAGIC_TRAIL;
177
178
#include <stddef.h>
179
#include <string.h>
180
-static uint8_t NVM_CACHE[NVM_CACHE_SIZE] XALIGNED(16)
+static uint8_t NVM_CACHE[NVM_CACHE_SIZE] XALIGNED(16);
181
static int nvm_cached_sector = 0;
182
static uint8_t get_base_offset(uint8_t *base, uintptr_t off)
183
{
src/update_disk.c
@@ -79,7 +79,7 @@ extern uint8_t _end_wb[];
79
*/
80
void RAMFUNCTION wolfBoot_start(void)
81
82
- uint8_t p_hdr[IMAGE_HEADER_SIZE] XALIGN_STACK(16);
+ uint8_t p_hdr[IMAGE_HEADER_SIZE] XALIGNED_STACK(16);
83
struct stage2_parameter *stage2_params;
84
struct wolfBoot_image os_image;
85
int pA_ver = 0, pB_ver = 0;
0 commit comments