mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
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.
This commit is contained in:
parent
9d694f636f
commit
0818da5308
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user