summaryrefslogtreecommitdiff
path: root/src/common/controldata_utils.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-10-28 09:19:06 +0200
committerPeter Eisentraut <peter@eisentraut.org>2022-10-28 09:19:06 +0200
commitb1099eca8f38ff5cfaf0901bb91cb6a22f909bc6 (patch)
tree8ef29d9ee5911b059c8ecd2123b50c411cfc7a9e /src/common/controldata_utils.c
parentd37aa3d35832afde94e100c4d2a9618b3eb76472 (diff)
Remove AssertArg and AssertState
These don't offer anything over plain Assert, and their usage had already been declared obsolescent. Author: Nathan Bossart <nathandbossart@gmail.com> Reviewed-by: Michael Paquier <michael@paquier.xyz> Discussion: https://www.postgresql.org/message-id/20221009210148.GA900071@nathanxps13
Diffstat (limited to 'src/common/controldata_utils.c')
-rw-r--r--src/common/controldata_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/controldata_utils.c b/src/common/controldata_utils.c
index 66168543a6e..2d1f35bbd18 100644
--- a/src/common/controldata_utils.c
+++ b/src/common/controldata_utils.c
@@ -57,7 +57,7 @@ get_controlfile(const char *DataDir, bool *crc_ok_p)
pg_crc32c crc;
int r;
- AssertArg(crc_ok_p);
+ Assert(crc_ok_p);
ControlFile = palloc_object(ControlFileData);
snprintf(ControlFilePath, MAXPGPATH, "%s/global/pg_control", DataDir);