1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-06-20 23:59:28 +02:00

Remove unused type parameter from FUNCTION_TEST_RETURN().

This parameter was always useless but commit 7333b630 removed all references to it so remove the parameter at all call sites as well.

The original intention was probably to allow logging of TEST return values but that never happened.
This commit is contained in:
David Steele
2019-01-28 15:06:28 +02:00
parent 7333b6302f
commit 8b2a344cfe
79 changed files with 416 additions and 427 deletions

View File

@ -25,7 +25,7 @@ pgInterfaceIs091(const Buffer *controlFile)
ControlFileData *controlData = (ControlFileData *)bufPtr(controlFile);
FUNCTION_TEST_RETURN(
BOOL, controlData->pg_control_version == PG_CONTROL_VERSION && controlData->catalog_version_no == CATALOG_VERSION_NO);
controlData->pg_control_version == PG_CONTROL_VERSION && controlData->catalog_version_no == CATALOG_VERSION_NO);
}
/***********************************************************************************************************************************