From 982e2036cf068c7e3e2378bc395acd5ac940d329 Mon Sep 17 00:00:00 2001 From: Themba Dube Date: Thu, 31 Oct 2019 20:18:50 -0400 Subject: [PATCH] Fix inconsistency between lv_debug.c and lv_debug.h --- src/lv_core/lv_debug.c | 3 ++- src/lv_core/lv_debug.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lv_core/lv_debug.c b/src/lv_core/lv_debug.c index 28d09d1da..f5b02d541 100644 --- a/src/lv_core/lv_debug.c +++ b/src/lv_core/lv_debug.c @@ -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"; diff --git a/src/lv_core/lv_debug.h b/src/lv_core/lv_debug.h index f66fb65b4..f9b8082dd 100644 --- a/src/lv_core/lv_debug.h +++ b/src/lv_core/lv_debug.h @@ -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);