diff options
Diffstat (limited to '')
-rw-r--r-- | encoder_base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/encoder_base.c b/encoder_base.c index cfa14d5..0d64cb4 100644 --- a/encoder_base.c +++ b/encoder_base.c @@ -1,5 +1,5 @@ /* Clzip - LZMA lossless data compressor - Copyright (C) 2010-2024 Antonio Diaz Diaz. + Copyright (C) 2010-2025 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 @@ -153,7 +153,7 @@ void Re_flush_data( Range_encoder * const renc ) { if( renc->outfd >= 0 && writeblock( renc->outfd, renc->buffer, renc->pos ) != renc->pos ) - { show_error( write_error_msg, errno, false ); cleanup_and_fail( 1 ); } + { show_error( wr_err_msg, errno, false ); cleanup_and_fail( 1 ); } renc->partial_member_pos += renc->pos; renc->pos = 0; show_cprogress( 0, 0, 0, 0 ); |