diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2016-08-12 15:33:28 +0200 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2016-08-12 15:33:28 +0200 |
| commit | 4f7f7f286d168998d260c16d2be62e02a379aae1 (patch) | |
| tree | 1d25c028e17618daeaad509af15377203e1c00c6 /apps/gui | |
| parent | 37cc4336286bd5ba8fd7611e91dd197469a2e9d2 (diff) | |
| download | rockbox-4f7f7f286d168998d260c16d2be62e02a379aae1.zip rockbox-4f7f7f286d168998d260c16d2be62e02a379aae1.tar.gz rockbox-4f7f7f286d168998d260c16d2be62e02a379aae1.tar.bz2 rockbox-4f7f7f286d168998d260c16d2be62e02a379aae1.tar.xz | |
Fix misleading indentation as pointed out by the new gcc warning
Change-Id: Ia9c0b09ffb57dccbc7d13fce3b3a8a7d46b84857
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/skin_engine/skin_tokens.c | 6 |
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 934085c..c07d4cf 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, pitch / PITCH_SPEED_PRECISION, (pitch % PITCH_SPEED_PRECISION) / (PITCH_SPEED_PRECISION / 10)); - if (intval) - *intval = pitch_speed_enum(limit, pitch, + if (intval) + *intval = pitch_speed_enum(limit, pitch, PITCH_SPEED_PRECISION * 100); return buf; } @@ -1491,7 +1491,7 @@ const char *get_token_value(struct gui_wps *gwps, if (intval) *intval = pitch_speed_enum(limit, speed, PITCH_SPEED_PRECISION * 100); - return buf; + return buf; } #endif |