forked from len0rd/rockbox
Fix warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7534 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
548c1b72c0
commit
8c1330b391
1 changed files with 2 additions and 2 deletions
|
@ -611,7 +611,7 @@ static bool solve(Sudoku* sud, Stats* stats, const Options* options){
|
||||||
|
|
||||||
|
|
||||||
/* A wrapper function between the Sudoku plugin and the above solver code */
|
/* A wrapper function between the Sudoku plugin and the above solver code */
|
||||||
sudoku_solve(struct sudoku_state_t* state) {
|
void sudoku_solve(struct sudoku_state_t* state) {
|
||||||
bool ret;
|
bool ret;
|
||||||
Stats stats;
|
Stats stats;
|
||||||
Options options;
|
Options options;
|
||||||
|
@ -652,7 +652,7 @@ sudoku_solve(struct sudoku_state_t* state) {
|
||||||
rb->splash(HZ*2, true, "Solve failed");
|
rb->splash(HZ*2, true, "Solve failed");
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue