summaryrefslogtreecommitdiff
path: root/apps/gui/wps.c
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2012-05-06 23:10:19 -0400
committerRafaël Carré <funman@videolan.org>2012-05-06 23:13:34 -0400
commit65bb8e4452575164a36fbd503bb3d23f7061b9d1 (patch)
tree8f7769fa6cf19cdf568c808e01844482cb9c666c /apps/gui/wps.c
parentaaf9a1be494812dd6aedde12ea7b3c2d3305d6b7 (diff)
downloadrockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.tar.gz
rockbox-65bb8e4452575164a36fbd503bb3d23f7061b9d1.zip
Remove extraneous parens
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r--apps/gui/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 88918e16d3..25c97fe613 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -592,7 +592,7 @@ static void play_hop(int direction)
592#endif 592#endif
593 return; 593 return;
594 } 594 }
595 else if ((direction == -1 && elapsed < step)) 595 else if (direction == -1 && elapsed < step)
596 { 596 {
597 elapsed = 0; 597 elapsed = 0;
598 } 598 }