From 7dcf8dde7cfc88a4bc27f192275bb9c56a282d34 Mon Sep 17 00:00:00 2001 From: Ouss4 Date: Tue, 10 Dec 2019 13:42:58 -0600 Subject: [PATCH] arch/xtensa/src/esp32/esp32_start.c: A comma was missing in g_idlestack attributes. --- arch/xtensa/src/esp32/esp32_start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/xtensa/src/esp32/esp32_start.c b/arch/xtensa/src/esp32/esp32_start.c index 8cca41fa32..8bfbf733e1 100644 --- a/arch/xtensa/src/esp32/esp32_start.c +++ b/arch/xtensa/src/esp32/esp32_start.c @@ -51,7 +51,7 @@ /* Address of the CPU0 IDLE thread */ uint32_t g_idlestack[IDLETHREAD_STACKWORDS] - __attribute__((aligned(16) section(".noinit"))); + __attribute__((aligned(16), section(".noinit"))); /**************************************************************************** * Public Functions