Skip to content

Commit

Permalink
Silence GCC warning
Browse files Browse the repository at this point in the history
  • Loading branch information
embeddedt committed Dec 6, 2019
1 parent f6f5f69 commit d773541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lv_core/lv_debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -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); \
} \
}
Expand Down

0 comments on commit d773541

Please sign in to comment.