Change test ExceptionalCondition to return void
Commit 81107282a changed it in assert.c, but overlooked this other file.
This commit is contained in:
parent
d54a94b806
commit
113d25c4e6
@ -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;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user