diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-03-15 18:53:43 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-03-15 18:53:43 -0700 |
commit | 82008ccd7ad52e7e2f917b6a1de42dbe8546b7ec (patch) | |
tree | 195a71a2c6232b953b60825383b555aed6166111 /src/test-rectinsert.c | |
parent | f3f4730c2236a3f27a921d818f14bc62b0e311d0 (diff) |
*: random whitespace cleanups
Mostly trailing space/tab removals, no functional changes.
Diffstat (limited to 'src/test-rectinsert.c')
-rw-r--r-- | src/test-rectinsert.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test-rectinsert.c b/src/test-rectinsert.c index 40c2ce3..92d7502 100644 --- a/src/test-rectinsert.c +++ b/src/test-rectinsert.c @@ -107,7 +107,7 @@ static void GetState(RectArea *root, boolean *state) current = current->next; } } - + static boolean rmdStatesEqual(boolean *a, boolean *b) { int x, y; @@ -126,7 +126,7 @@ static boolean rmdStatesEqual(boolean *a, boolean *b) static void rmdPrintState(boolean *state) { int x, y; - + for (y = 0; y < STATE_HEIGHT; y++) { printf(" "); @@ -166,7 +166,7 @@ int main(int argc, char **argv) printf(" FAILURE!\n"); printf(" Current state:\n"); rmdPrintState(current_state); - + printf(" Expected state:\n"); rmdPrintState(rectinsert_test_data[i].expected_state); @@ -181,6 +181,6 @@ int main(int argc, char **argv) printf("\n"); i++; } - + return result; } |