diff options
author | sr55 <[email protected]> | 2013-03-02 18:50:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-03-02 18:50:10 +0000 |
commit | 09843340c7c998e360bcc879674c0646f379077d (patch) | |
tree | 71371c350e3597cf3291a72ab6d88ff29d970ba0 | |
parent | 9aa50a651315311e84b0272365fb63475df60de5 (diff) |
CLI: Switch back to stderr.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5282 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | test/test.c | 6 |
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 |