diff options
Diffstat (limited to '')
-rw-r--r-- | decompress.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/decompress.cc b/decompress.cc index 3511921..f580bca 100644 --- a/decompress.cc +++ b/decompress.cc @@ -1,6 +1,6 @@ /* Plzip - Parallel compressor compatible with lzip Copyright (C) 2009 Laszlo Ersek. - Copyright (C) 2009-2016 Antonio Diaz Diaz. + Copyright (C) 2009-2017 Antonio Diaz Diaz. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -266,15 +266,15 @@ int decompress( int num_workers, const int infd, const int outfd, delete[] worker_threads; delete[] worker_args; - const unsigned long long in_size = file_index.file_end(); - const unsigned long long out_size = file_index.data_end(); + const unsigned long long in_size = file_index.cdata_size(); + const unsigned long long out_size = file_index.udata_size(); if( verbosity >= 2 && out_size > 0 && in_size > 0 ) std::fprintf( stderr, "%6.3f:1, %6.3f bits/byte, %5.2f%% saved. ", (double)out_size / in_size, ( 8.0 * in_size ) / out_size, 100.0 * ( 1.0 - ( (double)in_size / out_size ) ) ); if( verbosity >= 4 ) - std::fprintf( stderr, "decompressed size %9llu, size %9llu. ", + std::fprintf( stderr, "decompressed %9llu, compressed %9llu. ", out_size, in_size ); if( verbosity >= 1 ) std::fputs( (outfd < 0) ? "ok\n" : "done\n", stderr ); |