graphics/lvgl: fix build due to no-format-security

Without this change the build produces error:
  error: ‘-Wformat-security’ ignored without ‘-Wformat’
This commit is contained in:
Karel Kočí 2023-02-22 11:57:58 +01:00 committed by Xiang Xiao
parent 6f192bd1e0
commit 6b44c59bee

View File

@ -27,7 +27,7 @@ LVGL_DIR_NAME = lvgl
# Relax LVGL's format checking and unused variable checking to avoid errors
CFLAGS += -Wno-format -Wno-unused-variable
CFLAGS += -Wno-format -Wno-format-security -Wno-unused-variable
-include ./lvgl/lvgl.mk