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

Merge pull request #691 from Ferruck/fix/limits-error

lv_log: Fix type limits error
This commit is contained in:
Gabor Kiss-Vamosi 2019-01-03 11:19:45 +01:00 committed by GitHub
commit 29200c8814
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ extern "C" {
#define LV_LOG_LEVEL_ERROR 3 /*Only critical issue, when the system may fail*/
#define _LV_LOG_LEVEL_NUM 4
typedef uint8_t lv_log_level_t;
typedef int8_t lv_log_level_t;
#if USE_LV_LOG
/**********************