summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_tokens.c
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2016-08-12 15:33:28 +0200
committerFrank Gevaerts <frank@gevaerts.be>2016-08-12 15:33:28 +0200
commit4f7f7f286d168998d260c16d2be62e02a379aae1 (patch)
tree1d25c028e17618daeaad509af15377203e1c00c6 /apps/gui/skin_engine/skin_tokens.c
parent37cc4336286bd5ba8fd7611e91dd197469a2e9d2 (diff)
downloadrockbox-4f7f7f286d168998d260c16d2be62e02a379aae1.tar.gz
rockbox-4f7f7f286d168998d260c16d2be62e02a379aae1.zip
Fix misleading indentation as pointed out by the new gcc warning
Change-Id: Ia9c0b09ffb57dccbc7d13fce3b3a8a7d46b84857
Diffstat (limited to 'apps/gui/skin_engine/skin_tokens.c')
-rw-r--r--apps/gui/skin_engine/skin_tokens.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c
index 934085c707..c07d4cf2df 100644
--- a/apps/gui/skin_engine/skin_tokens.c
+++ b/apps/gui/skin_engine/skin_tokens.c
@@ -1469,8 +1469,8 @@ const char *get_token_value(struct gui_wps *gwps,
1469 pitch / PITCH_SPEED_PRECISION, 1469 pitch / PITCH_SPEED_PRECISION,
1470 (pitch % PITCH_SPEED_PRECISION) / (PITCH_SPEED_PRECISION / 10)); 1470 (pitch % PITCH_SPEED_PRECISION) / (PITCH_SPEED_PRECISION / 10));
1471 1471
1472 if (intval) 1472 if (intval)
1473 *intval = pitch_speed_enum(limit, pitch, 1473 *intval = pitch_speed_enum(limit, pitch,
1474 PITCH_SPEED_PRECISION * 100); 1474 PITCH_SPEED_PRECISION * 100);
1475 return buf; 1475 return buf;
1476 } 1476 }
@@ -1491,7 +1491,7 @@ const char *get_token_value(struct gui_wps *gwps,
1491 if (intval) 1491 if (intval)
1492 *intval = pitch_speed_enum(limit, speed, 1492 *intval = pitch_speed_enum(limit, speed,
1493 PITCH_SPEED_PRECISION * 100); 1493 PITCH_SPEED_PRECISION * 100);
1494 return buf; 1494 return buf;
1495 } 1495 }
1496#endif 1496#endif
1497 1497