Silence GCC warning

This commit is contained in:
Themba Dube
2019-12-04 21:14:24 -05:00
parent f6f5f691f7
commit d7735410c9

View File

@@ -49,7 +49,7 @@ void lv_debug_log_error(const char * msg, uint64_t value);
{ \
if(!(expr)) { \
LV_LOG_ERROR(__func__); \
lv_debug_log_error(msg, (uint64_t)value); \
lv_debug_log_error(msg, (uint64_t)((uintptr_t)value)); \
while(1); \
} \
}