Skip to content

Commit 07ef67b

Browse files
committed
Fix typos
1 parent a195efe commit 07ef67b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libwolfboot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ static const uint32_t wolfboot_magic_trail = WOLFBOOT_MAGIC_TRAIL;
177177

178178
#include <stddef.h>
179179
#include <string.h>
180-
static uint8_t NVM_CACHE[NVM_CACHE_SIZE] XALIGNED(16)
180+
static uint8_t NVM_CACHE[NVM_CACHE_SIZE] XALIGNED(16);
181181
static int nvm_cached_sector = 0;
182182
static uint8_t get_base_offset(uint8_t *base, uintptr_t off)
183183
{

src/update_disk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ extern uint8_t _end_wb[];
7979
*/
8080
void RAMFUNCTION wolfBoot_start(void)
8181
{
82-
uint8_t p_hdr[IMAGE_HEADER_SIZE] XALIGN_STACK(16);
82+
uint8_t p_hdr[IMAGE_HEADER_SIZE] XALIGNED_STACK(16);
8383
struct stage2_parameter *stage2_params;
8484
struct wolfBoot_image os_image;
8585
int pA_ver = 0, pB_ver = 0;

0 commit comments

Comments
 (0)