summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2021-06-16 12:22:28 -0500
committerMichael Catanzaro <mcatanzaro@redhat.com>2021-06-16 12:22:28 -0500
commit0818da530875f58698dd402e3256e947d6341526 (patch)
treeffb62251ae215296f41860f1dc36f699e785b854
parent9d694f636f351388362e8bdc046ec735dfb22bcc (diff)
downloadglib-0818da530875f58698dd402e3256e947d6341526.tar.gz
testgdate: fix -Wmisleading-indentation warning
No behavior changes. Just reindent the existing code to avoid a GCC warning spam. I considered changing the code to not run fflush() on every iteration of the loop, but I doubt it matters much, so I left it be.
-rw-r--r--tests/testgdate.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testgdate.c b/tests/testgdate.c
index cc1e7a972..371d8addf 100644
--- a/tests/testgdate.c
+++ b/tests/testgdate.c
@@ -27,7 +27,9 @@ if (failed) \
} \
else \
++passed; \
- if ((passed+notpassed) % 10000 == 0) g_print ("."); fflush (stdout); \
+if ((passed+notpassed) % 10000 == 0) \
+ g_print ("."); \
+fflush (stdout); \
} G_STMT_END
static void