diff options
author | Jeffrey Goode <jeffg7@gmail.com> | 2010-05-28 13:21:24 +0000 |
---|---|---|
committer | Jeffrey Goode <jeffg7@gmail.com> | 2010-05-28 13:21:24 +0000 |
commit | c8944c09c2e7636ce356b68d1ce663f1e7affa06 (patch) | |
tree | 518c45d46414533329eb602de8912117a0d6fca4 /apps/voice_thread.c | |
parent | 0ae59df3fa49a31889d4889c5c8bad1c9519379a (diff) |
Voice buffer can be much, much smaller. Code cleanup, logf fix
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26354 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/voice_thread.c')
-rw-r--r-- | apps/voice_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/voice_thread.c b/apps/voice_thread.c index a65ec566d1..05e2017b0b 100644 --- a/apps/voice_thread.c +++ b/apps/voice_thread.c @@ -256,7 +256,7 @@ static void voice_message(struct voice_thread_data *td) return; case Q_VOICE_STOP: - LOGFQUEUE("voice < Q_VOICE_STOP: %ld", td->ev.data); + LOGFQUEUE("voice < Q_VOICE_STOP: %ld", (long)td->ev.data); if (td->ev.data != 0 && !playback_is_playing()) { |