kernel: remove empty string in assert statement
This was failing with compiler warnings. Looks like latest compilers enable warnings by default that we do not have in the current SDK. This was failing with unit tests being built natively. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
674bb28040
commit
7b9d89971b
1 changed files with 1 additions and 1 deletions
|
@ -1138,7 +1138,7 @@ static inline s64_t __ticks_to_ms(s64_t ticks)
|
|||
#endif
|
||||
|
||||
#else
|
||||
__ASSERT(ticks == 0, "");
|
||||
__ASSERT(ticks == 0, "ticks not zero");
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue