summaryrefslogtreecommitdiffstats
path: root/compress.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2025-01-19 13:36:24 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2025-01-19 13:36:24 +0000
commit2994dbfbd3587c4990b97979a8dec2c08c80c90a (patch)
tree6b32aeebabf2cd51abbea7e2f930d2a9bf1c3ff0 /compress.cc
parentAdding upstream version 1.12~rc1. (diff)
downloadplzip-upstream/1.12.tar.xz
plzip-upstream/1.12.zip
Adding upstream version 1.12.upstream/1.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--compress.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compress.cc b/compress.cc
index 3d7fb54..2140f7a 100644
--- a/compress.cc
+++ b/compress.cc
@@ -1,6 +1,6 @@
/* Plzip - Massively parallel implementation of lzip
Copyright (C) 2009 Laszlo Ersek.
- Copyright (C) 2009-2024 Antonio Diaz Diaz.
+ Copyright (C) 2009-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
@@ -465,7 +465,7 @@ void muxer( Packet_courier & courier, const Pretty_print & pp, const int outfd )
out_size += opacket->size;
if( writeblock( outfd, opacket->data, opacket->size ) != opacket->size )
- { pp(); show_error( write_error_msg, errno ); cleanup_and_fail(); }
+ { pp(); show_error( wr_err_msg, errno ); cleanup_and_fail(); }
delete[] opacket->data;
courier.return_empty_packet();
}