diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-11-26 23:24:27 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-11-26 23:24:27 +0000 |
| commit | 727ada0ad289768708c96c708e10787be8d4bf4a (patch) | |
| tree | 65a6eb0d46bc3389994bfcb5c80a38b38200cf39 /apps | |
| parent | 5d2757a43f3d6d0ffc4bee954f2f51bda600e345 (diff) | |
| download | rockbox-727ada0ad289768708c96c708e10787be8d4bf4a.zip rockbox-727ada0ad289768708c96c708e10787be8d4bf4a.tar.gz rockbox-727ada0ad289768708c96c708e10787be8d4bf4a.tar.bz2 rockbox-727ada0ad289768708c96c708e10787be8d4bf4a.tar.xz | |
Fix Player warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15819 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index a30066d..251ff66 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -302,7 +302,7 @@ static void jumpscroll_format(char* buffer, size_t buffer_size, int value, break; } } -static int32_t jumpscroll_getlang(int value) +static int32_t jumpscroll_getlang(int value, int unit) { switch (value) { @@ -313,7 +313,7 @@ static int32_t jumpscroll_getlang(int value) case 2: case 3: case 4: - return TALK_ID(2, UNIT_INT); + return TALK_ID(value, unit); case 5: return LANG_ALWAYS; } |