Skip to content

Commit

Permalink
Fix mismatched log/test macros.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsteele committed Jun 1, 2019
1 parent 12bca3c commit a207af7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/storage/storage.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ void *
storageDriver(const Storage *this) storageDriver(const Storage *this)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_LOG_PARAM(STORAGE, this); FUNCTION_TEST_PARAM(STORAGE, this);
FUNCTION_TEST_END(); FUNCTION_TEST_END();


ASSERT(this != NULL); ASSERT(this != NULL);
Expand All @@ -763,8 +763,8 @@ bool
storageFeature(const Storage *this, StorageFeature feature) storageFeature(const Storage *this, StorageFeature feature)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_LOG_PARAM(STORAGE, this); FUNCTION_TEST_PARAM(STORAGE, this);
FUNCTION_LOG_PARAM(ENUM, feature); FUNCTION_TEST_PARAM(ENUM, feature);
FUNCTION_TEST_END(); FUNCTION_TEST_END();


ASSERT(this != NULL); ASSERT(this != NULL);
Expand All @@ -779,7 +779,7 @@ StorageInterface
storageInterface(const Storage *this) storageInterface(const Storage *this)
{ {
FUNCTION_TEST_BEGIN(); FUNCTION_TEST_BEGIN();
FUNCTION_LOG_PARAM(STORAGE, this); FUNCTION_TEST_PARAM(STORAGE, this);
FUNCTION_TEST_END(); FUNCTION_TEST_END();


ASSERT(this != NULL); ASSERT(this != NULL);
Expand Down

0 comments on commit a207af7

Please sign in to comment.