Commit 113d25c4 authored by Alvaro Herrera's avatar Alvaro Herrera

Change test ExceptionalCondition to return void

Commit 81107282 changed it in assert.c, but overlooked this other file.
parent d54a94b8
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment