Remove uneeded braces in init()

This commit is contained in:
Camden Dixie O'Brien 2022-11-24 12:09:45 +00:00
parent d67f5571a4
commit d7394181ba

3
sud.c
View File

@ -28,9 +28,8 @@
static void init(struct sudoku *sud)
{
for (unsigned r = 0; r < NDIGITS; ++r) {
for (unsigned c = 0; c < NDIGITS; ++c) {
for (unsigned c = 0; c < NDIGITS; ++c)
sud->cells[r][c] = CELLINIT;
}
}
}