Don't use ERR_FAIL in SubProcessUnix::stop().

This commit is contained in:
Relintai 2023-09-10 22:26:30 +02:00
parent 587e896daf
commit e98b2a954b

View File

@ -183,7 +183,7 @@ Error SubProcessUnix::stop() {
return ret ? ERR_INVALID_PARAMETER : OK;
}
ERR_FAIL_V(ERR_BUG);
return OK;
#endif
}