diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2005-07-21 16:16:30 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2005-07-21 16:16:30 +0000 |
| commit | 857ee67b6a299d1ba3770e31ef645286ca131a33 (patch) | |
| tree | 00522598e143a2abc25fb40db7fd701cde1eb847 | |
| parent | ab2163bdf5d53f0a771593c454df99e6583afe38 (diff) | |
| download | rockbox-857ee67b6a299d1ba3770e31ef645286ca131a33.zip rockbox-857ee67b6a299d1ba3770e31ef645286ca131a33.tar.gz rockbox-857ee67b6a299d1ba3770e31ef645286ca131a33.tar.bz2 rockbox-857ee67b6a299d1ba3770e31ef645286ca131a33.tar.xz | |
Fixed the unnecessary compiler warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7215 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/playback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index 88cee8b..aadb1e2 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -1778,7 +1778,7 @@ void audio_set_crossfade_amount(int seconds) { long size; bool was_playing = playing; - int offset; + int offset = 0; /* Store the track resume position */ if (playing) |