global: Replace BUILD_ASSERT_MSG() with BUILD_ASSERT()
Replace all occurences of BUILD_ASSERT_MSG() with BUILD_ASSERT() as a result of merging BUILD_ASSERT() and BUILD_ASSERT_MSG(). Signed-off-by: Oleg Zhurakivskyy <oleg.zhurakivskyy@intel.com>
This commit is contained in:
parent
974aa3add4
commit
8739517107
52 changed files with 206 additions and 207 deletions
|
@ -501,8 +501,8 @@ struct shell_flags {
|
|||
u32_t last_nl :8; /*!< Last received new line character */
|
||||
};
|
||||
|
||||
BUILD_ASSERT_MSG((sizeof(struct shell_flags) == sizeof(u32_t)),
|
||||
"Structure must fit in 4 bytes");
|
||||
BUILD_ASSERT((sizeof(struct shell_flags) == sizeof(u32_t)),
|
||||
"Structure must fit in 4 bytes");
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue