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 | |
parent | 5f5a83e1c9c847a974609e901cf58125f1ef6b84 (diff) | |
download | rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.tar.gz rockbox-cfbd9cb22fc1499c3b2f8207d72dce4cb388e09f.zip |
Make a few local variables static
Change-Id: Ieb77a7f2cdf765afa3121320d03c0478cd97eb0f
Diffstat (limited to 'apps')
-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 5c2fc7f8ce..c57855eeac 100644 --- a/apps/playback.c +++ b/apps/playback.c | |||
@@ -115,7 +115,7 @@ static enum audio_buffer_state | |||
115 | /** Main state control **/ | 115 | /** Main state control **/ |
116 | static bool ff_rw_mode SHAREDBSS_ATTR = false; /* Pre-ff-rewind mode (A,O-) */ | 116 | static bool ff_rw_mode SHAREDBSS_ATTR = false; /* Pre-ff-rewind mode (A,O-) */ |
117 | 117 | ||
118 | enum play_status | 118 | static enum play_status |
119 | { | 119 | { |
120 | PLAY_STOPPED = 0, | 120 | PLAY_STOPPED = 0, |
121 | PLAY_PLAYING = AUDIO_STATUS_PLAY, | 121 | PLAY_PLAYING = AUDIO_STATUS_PLAY, |
@@ -268,7 +268,7 @@ enum track_load_status | |||
268 | /** Track change controls **/ | 268 | /** Track change controls **/ |
269 | 269 | ||
270 | /* What sort of skip is pending globally? */ | 270 | /* What sort of skip is pending globally? */ |
271 | enum track_skip_type | 271 | static enum track_skip_type |
272 | { | 272 | { |
273 | /* Relative to what user is intended to see: */ | 273 | /* Relative to what user is intended to see: */ |
274 | /* Codec: +0, Track List: +0, Playlist: +0 */ | 274 | /* Codec: +0, Track List: +0, Playlist: +0 */ |