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
|
@ -12,8 +12,7 @@
|
|||
#include <string.h>
|
||||
#include <sys/fdtable.h>
|
||||
|
||||
BUILD_ASSERT_MSG(PATH_MAX >= MAX_FILE_NAME,
|
||||
"PATH_MAX is less than MAX_FILE_NAME");
|
||||
BUILD_ASSERT(PATH_MAX >= MAX_FILE_NAME, "PATH_MAX is less than MAX_FILE_NAME");
|
||||
|
||||
struct posix_fs_desc {
|
||||
union {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue