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:
Anas Nashif 2018-01-09 09:13:28 -05:00 committed by Anas Nashif
commit 7b9d89971b

View file

@ -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
}