*: Also fix the adjacent errors

This commit is contained in:
ZyX
2016-06-10 22:35:18 +03:00
parent d359bb3f60
commit 739f066afe
8 changed files with 62 additions and 61 deletions

View File

@@ -25,9 +25,9 @@ struct ugrid {
#define UGRID_FOREACH_CELL(grid, top, bot, left, right, code) \
do { \
for (int row = top; row <= bot; ++row) { \
for (int row = top; row <= bot; row++) { \
UCell *row_cells = (grid)->cells[row]; \
for (int col = left; col <= right; ++col) { \
for (int col = left; col <= right; col++) { \
UCell *cell = row_cells + col; \
(void)(cell); \
code; \