diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2012-04-26 15:57:07 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2012-04-26 16:04:44 -0400 |
commit | cfc32fe75f51f4feef4d4308220f46c56bceefa3 (patch) | |
tree | 8c5bf11f0067ef655e8e7048ddf97614314808d5 /apps/voice_thread.h | |
parent | e5c3327cefb4e6f3a9089ad30fd12bb8f40a0658 (diff) |
Adjust some typing in voice_thread.c. Constants are also counts, not sizes.
Change-Id: I05700f6c87c775e98f05323d2ab0550fad8befd7
Diffstat (limited to 'apps/voice_thread.h')
-rw-r--r-- | apps/voice_thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/voice_thread.h b/apps/voice_thread.h index 4e4af1fc5c..e88630439b 100644 --- a/apps/voice_thread.h +++ b/apps/voice_thread.h @@ -39,6 +39,6 @@ void voice_thread_init(void) INIT_ATTR; void voice_thread_set_priority(int priority); #endif -size_t voicebuf_init(unsigned char *bufend); +size_t voicebuf_init(void *bufend); #endif /* VOICE_THREAD_H */ |