1
0
Fork 0
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:
Michael Sevakis 2007-04-21 19:07:15 +00:00
parent 26d242ae65
commit 8676dc25f5
22 changed files with 32 additions and 32 deletions

View file

@ -160,7 +160,7 @@ void edit_list(void)
fd = rb->open(RFA_FILE,O_RDONLY);
if (fd < 0)
return;
buffer = rb->plugin_get_audio_buffer(&buffer_size);
buffer = rb->plugin_get_audio_buffer((size_t *)&buffer_size);
if (!buffer)
return;
rb->read(fd,buffer,buffer_size);