mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +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:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user