From 0646509b9a90de27dfaf0e0d392645af0d2e3f94 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 31 Oct 2017 16:47:44 +0100 Subject: [PATCH] lv_style anim solve warning --- lv_obj/lv_style.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index c9399c5b0..2ec91b468 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -24,8 +24,8 @@ * TYPEDEFS **********************/ typedef struct { - const lv_style_t style_start; /*Save not only pointers because if same as 'style_anim' then it will be modified too*/ - const lv_style_t style_end; + lv_style_t style_start; /*Save not only pointers because if same as 'style_anim' then it will be modified too*/ + lv_style_t style_end; lv_style_t * style_anim; }lv_style_anim_dsc_t;