1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-05 07:41:25 +03:00

Change test ExceptionalCondition to return void

Commit 81107282a changed it in assert.c, but overlooked this other file.
This commit is contained in:
Alvaro Herrera
2012-11-30 19:20:15 -03:00
parent d54a94b806
commit 113d25c4e6

View File

@@ -113,7 +113,7 @@ ProcessInterrupts(void)
{ {
} }
int void
ExceptionalCondition(const char *conditionName, ExceptionalCondition(const char *conditionName,
const char *errorType, const char *errorType,
const char *fileName, const char *fileName,
@@ -123,7 +123,6 @@ ExceptionalCondition(const char *conditionName,
errorType, conditionName, errorType, conditionName,
fileName, lineNumber); fileName, lineNumber);
abort(); abort();
return 0;
} }