1
0
Fork 0
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:
Dave Chapman 2005-09-22 09:01:50 +00:00
parent 548c1b72c0
commit 8c1330b391

View file

@ -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 */
sudoku_solve(struct sudoku_state_t* state) {
void sudoku_solve(struct sudoku_state_t* state) {
bool ret;
Stats stats;
Options options;
@ -652,7 +652,7 @@ sudoku_solve(struct sudoku_state_t* state) {
rb->splash(HZ*2, true, "Solve failed");
}
return ret;
return;
}