From 8a4e21bd8e371d11364769a9b0946ca4443a5845 Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Mon, 1 Feb 2021 08:41:53 -0600 Subject: [PATCH] fixup bad static_assert --- src/rp2_common/hardware_flash/flash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2_common/hardware_flash/flash.c b/src/rp2_common/hardware_flash/flash.c index 70c626e..8657ba5 100644 --- a/src/rp2_common/hardware_flash/flash.c +++ b/src/rp2_common/hardware_flash/flash.c @@ -165,7 +165,7 @@ static void __no_inline_not_in_flash_func(flash_do_cmd)(const uint8_t *txbuf, ui // Use standard RUID command to get a unique identifier for the flash (and // hence the board) -static_assert(FLASH_UNIQUE_ID_SIZE_BYTES == FLASH_RUID_DATA_BYTES); +static_assert(FLASH_UNIQUE_ID_SIZE_BYTES == FLASH_RUID_DATA_BYTES, ""); void flash_get_unique_id(uint8_t *id_out) { #if PICO_NO_FLASH