grid: swap_row: remove unused parameter 'initialize'

This commit is contained in:
Daniel Eklöf 2020-05-16 23:43:05 +02:00
parent 6902c22a77
commit 57e04a1320
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 6 additions and 6 deletions

2
grid.c
View file

@ -10,7 +10,7 @@
#include "util.h"
void
grid_swap_row(struct grid *grid, int row_a, int row_b, bool initialize)
grid_swap_row(struct grid *grid, int row_a, int row_b)
{
assert(grid->offset >= 0);
assert(row_a != row_b);