diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:54:34 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:54:34 +0000 |
commit | 0365128151213dce330455157d2d98630a8216d2 (patch) | |
tree | c724560cc31cc2161d214eaeb2fbfcfa58eb010f /dec_stream.cc | |
parent | Adding upstream version 1.4~rc1. (diff) | |
download | plzip-0365128151213dce330455157d2d98630a8216d2.tar.xz plzip-0365128151213dce330455157d2d98630a8216d2.zip |
Adding upstream version 1.4.upstream/1.4
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | dec_stream.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dec_stream.cc b/dec_stream.cc index a814194..93fc8de 100644 --- a/dec_stream.cc +++ b/dec_stream.cc @@ -520,7 +520,7 @@ int dec_stream( const int num_workers, const int infd, const int outfd, std::fprintf( stderr, "decompressed size %9llu, size %9llu. ", out_size, in_size ); - if( verbosity >= 1 ) std::fprintf( stderr, (outfd < 0) ? "ok\n" : "done\n" ); + if( verbosity >= 1 ) std::fputs( (outfd < 0) ? "ok\n" : "done\n", stderr ); if( debug_level & 1 ) std::fprintf( stderr, |