diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-04-04 20:34:28 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-04-04 20:34:28 +0000 |
| commit | c778aa6ac8661d630ade6888b69b3f624b0bc0ac (patch) | |
| tree | 26713648b6970413681d07c39b227fda1101b5fd | |
| parent | c8592bac33920c367ae574e76ac7b6b73e0353c3 (diff) | |
| download | rockbox-c778aa6ac8661d630ade6888b69b3f624b0bc0ac.zip rockbox-c778aa6ac8661d630ade6888b69b3f624b0bc0ac.tar.gz rockbox-c778aa6ac8661d630ade6888b69b3f624b0bc0ac.tar.bz2 rockbox-c778aa6ac8661d630ade6888b69b3f624b0bc0ac.tar.xz | |
warning and simulator build fix
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4466 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tree.c | 2 | ||||
| -rw-r--r-- | uisimulator/common/stubs.c | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 01aabf7..31fe0e2 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -1511,7 +1511,7 @@ static bool dirbrowse(char *root, int *dirfilter) else if (global_settings.talk_file == 1) /* files as numbers */ { /* try to find a voice ID for the extension, if known */ - int j; + unsigned int j; int ext_id = -1; /* default to none */ for (j=0; j<sizeof(filetypes)/sizeof(*filetypes); j++) { diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index b9b0a04..78e521b 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -260,4 +260,11 @@ int talk_number(int n, bool enqueue) return 0; } +int talk_spell(char* spell, bool enqueue) +{ + (void)spell; + (void)enqueue; + return 0; +} + const char* dir_thumbnail_name = ".dirname.mp3"; |