forked from len0rd/rockbox
typecast the five functions that still make a simulator produce compiler
warnings git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4119 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e15ac75ea0
commit
b062547747
1 changed files with 5 additions and 5 deletions
|
@ -108,12 +108,12 @@ static struct plugin_api rockbox_api = {
|
|||
button_get_w_tmo,
|
||||
|
||||
/* file */
|
||||
PREFIX(open),
|
||||
(open_func)PREFIX(open),
|
||||
PREFIX(close),
|
||||
read,
|
||||
(read_func)read,
|
||||
lseek,
|
||||
PREFIX(creat),
|
||||
write,
|
||||
(creat_func)PREFIX(creat),
|
||||
(write_func)write,
|
||||
remove,
|
||||
rename,
|
||||
ftruncate,
|
||||
|
@ -149,7 +149,7 @@ static struct plugin_api rockbox_api = {
|
|||
srand,
|
||||
rand,
|
||||
splash,
|
||||
qsort,
|
||||
(qsort_func)qsort,
|
||||
kbd_input,
|
||||
mpeg_current_track,
|
||||
atoi,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue