summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test.c b/test/test.c
index b20d50426..b4aa531b4 100644
--- a/test/test.c
+++ b/test/test.c
@@ -587,15 +587,15 @@ static int HandleEvents( hb_handle_t * h )
/* Show what title is currently being scanned */
if (p.preview_cur)
{
- fprintf(stdout, "\rScanning title %d of %d, preview %d, %.2f %%",
+ fprintf(stderr, "\rScanning title %d of %d, preview %d, %.2f %%",
p.title_cur, p.title_count, p.preview_cur, 100 * p.progress);
}
else
{
- fprintf(stdout, "\rScanning title %d of %d, %.2f %%",
+ fprintf(stderr, "\rScanning title %d of %d, %.2f %%",
p.title_cur, p.title_count, 100 * p.progress);
}
- fflush(stdout);
+ fflush(stderr);
break;
#undef p