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
c408fa88a3
commit
b1e1f64d14
53 changed files with 215 additions and 216 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