1
0
Fork 0
forked from len0rd/rockbox

Fixed a simulator warning.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6899 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2005-06-27 19:52:34 +00:00
parent 85f4973106
commit c2093538a4

View file

@ -32,7 +32,7 @@ int codec_init(struct codec_api* rb)
xxx2wav_set_api(rb); xxx2wav_set_api(rb);
mem_ptr = 0; mem_ptr = 0;
mallocbuf = (unsigned char *)rb->get_codec_memory((size_t *)&bufsize); mallocbuf = (unsigned char *)rb->get_codec_memory((long *)&bufsize);
return 0; return 0;
} }