mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +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(
|
return strNewFmt(
|
||||||
"{inputSame: %s, done: %s, flushing: %s, availIn: %u}", cvtBoolToConstZ(this->inputSame), cvtBoolToConstZ(this->done),
|
"{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 \
|
#define FUNCTION_LOG_GZ_COMPRESS_TYPE \
|
||||||
|
Loading…
Reference in New Issue
Block a user