diff options
| author | Thomas Jarosch <tomj@simonv.com> | 2015-01-11 18:02:43 +0100 |
|---|---|---|
| committer | Thomas Jarosch <tomj@simonv.com> | 2015-01-11 18:02:43 +0100 |
| commit | cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f (patch) | |
| tree | 63944006054f4389ef6b189da42cb01c85100cdd /apps/playback.c | |
| parent | 5f5a83e1c9c847a974609e901cf58125f1ef6b84 (diff) | |
| download | rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.zip rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.gz rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.bz2 rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.xz | |
Make a few local variables static
Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
Diffstat (limited to 'apps/playback.c')
| -rw-r--r-- | apps/playback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playback.c b/apps/playback.c index 5c2fc7f..c57855e 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -115,7 +115,7 @@ static enum audio_buffer_state /** Main state control **/ static bool ff_rw_mode SHAREDBSS_ATTR = false; /* Pre-ff-rewind mode (A,O-) */ -enum play_status +static enum play_status { PLAY_STOPPED = 0, PLAY_PLAYING = AUDIO_STATUS_PLAY, @@ -268,7 +268,7 @@ enum track_load_status /** Track change controls **/ /* What sort of skip is pending globally? */ -enum track_skip_type +static enum track_skip_type { /* Relative to what user is intended to see: */ /* Codec: +0, Track List: +0, Playlist: +0 */ |