summaryrefslogtreecommitdiff
path: root/apps/plugins/sudoku.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sudoku.c')
-rw-r--r--apps/plugins/sudoku.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/sudoku.c b/apps/plugins/sudoku.c
index 4bd23e8394..12f8f67988 100644
--- a/apps/plugins/sudoku.c
+++ b/apps/plugins/sudoku.c
@@ -611,7 +611,7 @@ static bool solve(Sudoku* sud, Stats* stats, const Options* options){
611 611
612 612
613/* A wrapper function between the Sudoku plugin and the above solver code */ 613/* A wrapper function between the Sudoku plugin and the above solver code */
614sudoku_solve(struct sudoku_state_t* state) { 614void sudoku_solve(struct sudoku_state_t* state) {
615 bool ret; 615 bool ret;
616 Stats stats; 616 Stats stats;
617 Options options; 617 Options options;
@@ -652,7 +652,7 @@ sudoku_solve(struct sudoku_state_t* state) {
652 rb->splash(HZ*2, true, "Solve failed"); 652 rb->splash(HZ*2, true, "Solve failed");
653 } 653 }
654 654
655 return ret; 655 return;
656} 656}
657 657
658 658