diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2006-09-12 20:32:06 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2006-09-12 20:32:06 +0000 |
| commit | 1ecdbcced294df72f63cd00574c7f96bd987c232 (patch) | |
| tree | d269c2715a8d77c0f0bd85a5156ea2be44fa77cf /apps/gui | |
| parent | 98f78870f8d25cf235b60ec8ad7960704839e223 (diff) | |
| download | rockbox-1ecdbcced294df72f63cd00574c7f96bd987c232.zip rockbox-1ecdbcced294df72f63cd00574c7f96bd987c232.tar.gz rockbox-1ecdbcced294df72f63cd00574c7f96bd987c232.tar.bz2 rockbox-1ecdbcced294df72f63cd00574c7f96bd987c232.tar.xz | |
Save a few bytes on hwcodec targets...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10937 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/statusbar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/statusbar.c b/apps/gui/statusbar.c index 6070c77..b5913af 100644 --- a/apps/gui/statusbar.c +++ b/apps/gui/statusbar.c @@ -607,7 +607,7 @@ void gui_statusbar_icon_recording_info(struct screen * display) #endif #if CONFIG_CODEC != SWCODEC int width, height; - char* const sample_rate[12] = + static char* const sample_rate[12] = { "8", "11", @@ -622,7 +622,7 @@ void gui_statusbar_icon_recording_info(struct screen * display) "88", "96" }; - char* const bit_rate[9] = + static char* const bit_rate[9] = { "Mq0", "Mq1", |