From e9e1d9d45f0ef3b704cd82d4b95dd352904599c8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lo=C3=AFc=20Minier?= Date: Mon, 9 Jul 2007 07:42:30 +0000 Subject: [PATCH] Output newlines after thousand iterations of the inner-loop of the MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 2007-07-09 Loïc Minier * tests/refcount/closures.c: (main): Output newlines after thousand iterations of the inner-loop of the closures test; this helps having smaller lines and continuously outputting new lines. (#447048). svn path=/trunk/; revision=5609 --- ChangeLog | 6 ++++++ tests/refcount/closures.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7f99f021..f2ca49a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-09 Loïc Minier + + * tests/refcount/closures.c: (main): Output newlines after thousand + iterations of the inner-loop of the closures test; this helps having + smaller lines and continuously outputting new lines. (#447048). + 2007-07-09 Ryan Lortie * glib/gfileutils.c (write_to_temp_file): save errno to prevent it diff --git a/tests/refcount/closures.c b/tests/refcount/closures.c index 82a42fe2..c313aa60 100644 --- a/tests/refcount/closures.c +++ b/tests/refcount/closures.c @@ -263,7 +263,7 @@ main (int argc, test_emissions (object); if (++count % 10000 == 0) { - g_printerr ("."); + g_printerr (".\n"); g_thread_yield(); /* force context switch */ } } -- 2.34.1