forked from len0rd/rockbox
Missed a couple. Hopefully fix all warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13234 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
26d242ae65
commit
8676dc25f5
22 changed files with 32 additions and 32 deletions
|
@ -155,7 +155,7 @@ void *alloc(int size)
|
|||
|
||||
if (offset == NULL)
|
||||
{
|
||||
offset = rb->plugin_get_audio_buffer(&totalSize);
|
||||
offset = rb->plugin_get_audio_buffer((size_t *)&totalSize);
|
||||
}
|
||||
|
||||
if (size + 4 > totalSize)
|
||||
|
@ -192,7 +192,7 @@ void *alloc(int size)
|
|||
|
||||
if (offset == NULL)
|
||||
{
|
||||
offset = rb->plugin_get_audio_buffer(&totalSize);
|
||||
offset = rb->plugin_get_audio_buffer((size_t *)&totalSize);
|
||||
}
|
||||
|
||||
if (size + 4 > totalSize)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue