1
0
Fork 0
forked from len0rd/rockbox

Silence 2 gcc4 warnings.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9838 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2006-04-30 12:24:55 +00:00
parent e187e01e36
commit f376eb576d

View file

@ -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) static bool solve(Sudoku* sud, Stats* stats, const Options* options)
{ {
while (true){ while (true){
int x, y, i, num; int x = 0;
int y = 0;
int i, num;
int places[SIZE]; int places[SIZE];
if (scan(sud, &x, &y, &num, places)){ if (scan(sud, &x, &y, &num, places)){