diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-20 00:04:08 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-04-20 00:04:08 +0000 |
| commit | 06860eff860ba8dfe7b5bb06c4a594f386e225cf (patch) | |
| tree | 0fa652d12fd1a8d4e75f2426b1eae32e9d246680 /apps | |
| parent | 984278b10ac4fd3d124a8110c0d61b01c16bf0b1 (diff) | |
| download | rockbox-06860eff860ba8dfe7b5bb06c4a594f386e225cf.zip rockbox-06860eff860ba8dfe7b5bb06c4a594f386e225cf.tar.gz rockbox-06860eff860ba8dfe7b5bb06c4a594f386e225cf.tar.bz2 rockbox-06860eff860ba8dfe7b5bb06c4a594f386e225cf.tar.xz | |
Made global variable ff_mode local by making it static (should be accessed by status_get_ffmode() anyway).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17179 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/status.c | 2 | ||||
| -rw-r--r-- | apps/status.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/apps/status.c b/apps/status.c index 468ca19..4ca85c7 100644 --- a/apps/status.c +++ b/apps/status.c @@ -50,7 +50,7 @@ #include "pcm_record.h" #endif -enum playmode ff_mode; +static enum playmode ff_mode; void status_init(void) { diff --git a/apps/status.h b/apps/status.h index f42352b..ac405dd 100644 --- a/apps/status.h +++ b/apps/status.h @@ -19,8 +19,6 @@ #ifndef _STATUS_H #define _STATUS_H -extern enum playmode ff_mode; - #if defined(HAVE_LCD_CHARCELLS) extern bool record; extern bool audio; |