Fix inconsistency between lv_debug.c and lv_debug.h
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
* INCLUDES
|
* INCLUDES
|
||||||
*********************/
|
*********************/
|
||||||
#include "lv_obj.h"
|
#include "lv_obj.h"
|
||||||
|
#include "lv_debug.h"
|
||||||
|
|
||||||
#if LV_USE_DEBUG
|
#if LV_USE_DEBUG
|
||||||
|
|
||||||
@@ -126,7 +127,7 @@ bool lv_debug_check_str(const void * str)
|
|||||||
return false;
|
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";
|
static const char hex[] = "0123456789ABCDEF";
|
||||||
|
|
||||||
|
|||||||
@@ -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_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);
|
bool lv_debug_check_str(const void * str);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user