summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-03-13 04:22:05 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2022-03-13 04:22:05 -0400
commit3f2ad8bf2be551aff7c70e20c295ab5a0be7986d (patch)
tree01f29918cd96dda001c74fddf51c46380ae3a341
parent74df3ba2d823fde29b28ae3975e4ddfe09e4d69e (diff)
downloadrockbox-3f2ad8bf2be551aff7c70e20c295ab5a0be7986d.tar.gz
rockbox-3f2ad8bf2be551aff7c70e20c295ab5a0be7986d.zip
skin_parser.c fix red
Change-Id: If093ad790f63d39855bf3253ae7a6c11afcc1a96
-rw-r--r--apps/gui/skin_engine/skin_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 75d91e915d..a1c5cf3c1b 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1416,7 +1416,7 @@ static int parse_skinvar( struct skin_element *element,
1416 else if (sv_op == 0) /*touch*/ 1416 else if (sv_op == 0) /*touch*/
1417 return WPS_ERROR_INVALID_PARAM; 1417 return WPS_ERROR_INVALID_PARAM;
1418 data->max = 0; 1418 data->max = 0;
1419 if ((sv_op == 1) /*set*/ 1419 if (sv_op == 1) /*set*/
1420 data->direct = true; 1420 data->direct = true;
1421 else if (sv_op == 2) /*inc*/ 1421 else if (sv_op == 2) /*inc*/
1422 { 1422 {