summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/sudoku/sudoku.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/plugins/sudoku/sudoku.c b/apps/plugins/sudoku/sudoku.c
index cf9c51a..4be10cc 100644
--- a/apps/plugins/sudoku/sudoku.c
+++ b/apps/plugins/sudoku/sudoku.c
@@ -350,7 +350,9 @@ static bool spawn_option(Sudoku* sud, Stats* stats, const Options* options,
static bool solve(Sudoku* sud, Stats* stats, const Options* options)
{
while (true){
- int x, y, i, num;
+ int x = 0;
+ int y = 0;
+ int i, num;
int places[SIZE];
if (scan(sud, &x, &y, &num, places)){