1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Fix inconsistency between lv_debug.c and lv_debug.h

This commit is contained in:
Themba Dube 2019-10-31 20:18:50 -04:00
parent b02bf9d804
commit 982e2036cf
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@
* INCLUDES
*********************/
#include "lv_obj.h"
#include "lv_debug.h"
#if LV_USE_DEBUG
@ -126,7 +127,7 @@ bool lv_debug_check_str(const void * str)
return false;
}
void lv_debug_log_error(const char * msg, unsigned long int value)
void lv_debug_log_error(const char * msg, uint64_t value)
{
static const char hex[] = "0123456789ABCDEF";

View File

@ -34,7 +34,7 @@ bool lv_debug_check_obj_type(const lv_obj_t * obj, const char * obj_type);
bool lv_debug_check_obj_valid(const lv_obj_t * obj);
bool lv_debug_check_style(const void * str);
bool lv_debug_check_style(const lv_style_t * style);
bool lv_debug_check_str(const void * str);