diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:34:37 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 13:34:37 +0000 |
commit | f8840edb77f083c1d3a653bb4edb0490d53eab2c (patch) | |
tree | 58a545983dd1903ff2d42afd35d1d60c989c5ccf /main.cc | |
parent | Adding debian version 0.4-1. (diff) | |
download | lzlib-f8840edb77f083c1d3a653bb4edb0490d53eab2c.tar.xz lzlib-f8840edb77f083c1d3a653bb4edb0490d53eab2c.zip |
Merging upstream version 0.5.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'main.cc')
-rw-r--r-- | main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -558,8 +558,8 @@ int decompress( const int inhandle, const Pretty_print & pp, const LZ_errno lz_errno = LZ_decompress_errno( decoder ); if( lz_errno == LZ_header_error ) { - if( LZ_decompress_total_out_size( decoder ) > 0 ) // trailing garbage - break; + if( LZ_decompress_total_out_size( decoder ) > 0 ) + break; // trailing garbage pp( "error reading member header" ); return 1; } @@ -596,7 +596,7 @@ int decompress( const int inhandle, const Pretty_print & pp, } -void signal_handler( const int ) throw() +extern "C" void signal_handler( int ) throw() { show_error( "Control-C or similar caught, quitting." ); cleanup_and_fail( 0 ); |