mirror of
https://github.com/postgres/postgres.git
synced 2026-04-23 07:07:22 -04:00
Change test ExceptionalCondition to return void
Commit 81107282a changed it in assert.c, but overlooked this other file.
This commit is contained in:
parent
0adcaeef21
commit
f18c9510dc
1 changed files with 1 additions and 2 deletions
|
|
@ -113,7 +113,7 @@ ProcessInterrupts(void)
|
|||
{
|
||||
}
|
||||
|
||||
int
|
||||
void
|
||||
ExceptionalCondition(const char *conditionName,
|
||||
const char *errorType,
|
||||
const char *fileName,
|
||||
|
|
@ -123,7 +123,6 @@ ExceptionalCondition(const char *conditionName,
|
|||
errorType, conditionName,
|
||||
fileName, lineNumber);
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue