Skip to content

Commit fab12e0

Browse files
committed
Revert "bootutil: Replace BUILD_ASSERT_MSG() with BUILD_ASSERT()"
This reverts commit 6d417c9. The patch was merged accidentally too early. Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
1 parent 8ecb89b commit fab12e0

File tree

1 file changed

+2
-2
lines changed
  • boot/bootutil/include/bootutil

1 file changed

+2
-2
lines changed

boot/bootutil/include/bootutil/image.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ struct image_tlv {
133133
((fap)->fa_id == FLASH_AREA_IMAGE_SECONDARY(idx) && IS_ENCRYPTED(hdr))
134134

135135
#ifdef __ZEPHYR__
136-
BUILD_ASSERT(sizeof(struct image_header) == IMAGE_HEADER_SIZE,
137-
"struct image_header not required size");
136+
BUILD_ASSERT_MSG(sizeof(struct image_header) == IMAGE_HEADER_SIZE,
137+
"struct image_header not required size");
138138
#else
139139
_Static_assert(sizeof(struct image_header) == IMAGE_HEADER_SIZE,
140140
"struct image_header not required size");

0 commit comments

Comments
 (0)