Remove additional newline from seed printout
This commit is contained in:
parent
27d7f3f01b
commit
6ce468bb0d
2
main.c
2
main.c
@ -45,7 +45,7 @@ static uint32_t getseed(void)
|
|||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
uint32_t seed = getseed();
|
uint32_t seed = getseed();
|
||||||
printf("Seed: %u\n\n", seed);
|
printf("Seed: %u\n", seed);
|
||||||
srand(seed);
|
srand(seed);
|
||||||
|
|
||||||
struct sudoku puzzles[NPUZZLES];
|
struct sudoku puzzles[NPUZZLES];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user