From 79ffd047fff7317d902d2120d80a2b45ac766d77 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Sun, 6 Nov 2011 12:07:33 +0000 Subject: Fix warning and typos. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30912 a1c6a512-1295-4272-9138-f99709370657 --- apps/talk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/talk.c') diff --git a/apps/talk.c b/apps/talk.c index b9bfdc82ac..c264bd7179 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -778,7 +778,7 @@ void talk_buffer_steal(void) int talk_id(int32_t id, bool enqueue) { long clipsize; - size_t temp = talk_get_buffer(); + int temp = talk_get_buffer(); unsigned char* clipbuf; int32_t unit; int decimals; @@ -792,7 +792,7 @@ int talk_id(int32_t id, bool enqueue) /* try to get audio buffer until talkbuf_init() is called */ if (!voicebuf) - voicebuf = audio_get_buffer(true, &temp); + voicebuf = audio_get_buffer(true, (size_t*)&temp); if (p_voicefile == NULL && has_voicefile) load_voicefile(false, voicebuf, MIN(talk_get_buffer(),temp)); /* reload needed */ -- cgit v1.2.3