Skip to content

Commit

Permalink
Merge pull request #28 from lhiguer1/patch-1
Browse files Browse the repository at this point in the history
Fixed generate_seed()
  • Loading branch information
jubalh authored Jul 30, 2019
2 parents 4252842 + 9eecb15 commit 97159ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sudoku.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static char* generate_seed()
for(int j = 0; j < 6 ; j++)
stream[index++] = '.';
for(int j = 0; j < 3; j++)
stream[index++] = upperleft[iSquare++];
stream[index++] = lowerright[iSquare++];
}

stream[81] = '\0';
Expand Down

0 comments on commit 97159ce

Please sign in to comment.