diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-05 10:33:41 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-05 10:33:41 +0000 |
| commit | 5adb05fff5b29ab8316fb620434f398165ccf531 (patch) | |
| tree | 9a77d37903d6093423eb0675fa401821d9da3eca | |
| parent | 83e92b86fc02f8830008cd098d53169c111fdce6 (diff) | |
| download | rockbox-5adb05fff5b29ab8316fb620434f398165ccf531.zip rockbox-5adb05fff5b29ab8316fb620434f398165ccf531.tar.gz rockbox-5adb05fff5b29ab8316fb620434f398165ccf531.tar.bz2 rockbox-5adb05fff5b29ab8316fb620434f398165ccf531.tar.xz | |
void functions don't return values...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@433 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/play.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/play.c b/uisimulator/play.c index 7b2b6d7..bde4782 100644 --- a/uisimulator/play.c +++ b/uisimulator/play.c @@ -94,7 +94,7 @@ void playtune(char *dir, char *file) switch(key) { case BUTTON_OFF: case BUTTON_LEFT: - return FALSE; + return; break; } } |