forked from len0rd/rockbox
make init() a void always, this should heal the build again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@984 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4a3824425e
commit
6682c03de5
1 changed files with 1 additions and 3 deletions
|
|
@ -64,7 +64,7 @@ void init(void)
|
|||
extern int poolstart[];
|
||||
extern int poolend[];
|
||||
|
||||
int init(void)
|
||||
void init(void)
|
||||
{
|
||||
int rc;
|
||||
struct partinfo* pinfo;
|
||||
|
|
@ -97,8 +97,6 @@ int init(void)
|
|||
|
||||
button_init();
|
||||
mpeg_init();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int main(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue