1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Fix mismatched log/test macros.

This commit is contained in:
David Steele 2019-06-01 09:44:40 -04:00
parent 12bca3c43e
commit a207af7921

View File

@ -748,7 +748,7 @@ void *
storageDriver(const Storage *this)
{
FUNCTION_TEST_BEGIN();
FUNCTION_LOG_PARAM(STORAGE, this);
FUNCTION_TEST_PARAM(STORAGE, this);
FUNCTION_TEST_END();
ASSERT(this != NULL);
@ -763,8 +763,8 @@ bool
storageFeature(const Storage *this, StorageFeature feature)
{
FUNCTION_TEST_BEGIN();
FUNCTION_LOG_PARAM(STORAGE, this);
FUNCTION_LOG_PARAM(ENUM, feature);
FUNCTION_TEST_PARAM(STORAGE, this);
FUNCTION_TEST_PARAM(ENUM, feature);
FUNCTION_TEST_END();
ASSERT(this != NULL);
@ -779,7 +779,7 @@ StorageInterface
storageInterface(const Storage *this)
{
FUNCTION_TEST_BEGIN();
FUNCTION_LOG_PARAM(STORAGE, this);
FUNCTION_TEST_PARAM(STORAGE, this);
FUNCTION_TEST_END();
ASSERT(this != NULL);