From: Sergey Poznyakoff Date: Fri, 25 Oct 2024 06:50:22 +0000 (+0300) Subject: Bugfix X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=e59d09db7d3e4b2186dd5bdfe310557e13c33a64;p=thirdparty%2Ftar.git Bugfix This fixes an extra argument left over in a function call by commit 0dfcfa4aa4. Reported by Matteo Croce. * src/buffer.c (_open_archive): Fix extra argument to paxfatal. --- diff --git a/src/buffer.c b/src/buffer.c index 48ae840f..570c8666 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -724,7 +724,7 @@ _open_archive (enum access_mode wanted_access) bool backed_up_flag = false; if (record_size == 0) - paxfatal (0, 0, _("Invalid value for record_size")); + paxfatal (0, _("Invalid value for record_size")); if (archive_names == 0) paxfatal (0, _("No archive name given"));