1
0
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:
Cynthia Shang 2020-03-06 15:33:57 -05:00 committed by David Steele
parent 54bc3b454a
commit e93f1dd898

View File

@ -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 \