mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-12 10:04:14 +02:00
Fix incorrect parameter in logging function.
This commit is contained in:
parent
54bc3b454a
commit
e93f1dd898
@ -43,7 +43,7 @@ gzCompressToLog(const GzCompress *this)
|
||||
{
|
||||
return strNewFmt(
|
||||
"{inputSame: %s, done: %s, flushing: %s, availIn: %u}", cvtBoolToConstZ(this->inputSame), cvtBoolToConstZ(this->done),
|
||||
cvtBoolToConstZ(this->done), this->stream.avail_in);
|
||||
cvtBoolToConstZ(this->flush), this->stream.avail_in);
|
||||
}
|
||||
|
||||
#define FUNCTION_LOG_GZ_COMPRESS_TYPE \
|
||||
|
Loading…
Reference in New Issue
Block a user