From e98b2a954b8105e958405a57e8142384305a7b0b Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 10 Sep 2023 22:26:30 +0200 Subject: [PATCH] Don't use ERR_FAIL in SubProcessUnix::stop(). --- drivers/unix/sub_process_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/unix/sub_process_unix.cpp b/drivers/unix/sub_process_unix.cpp index 2bf0985d8..daa141b9c 100644 --- a/drivers/unix/sub_process_unix.cpp +++ b/drivers/unix/sub_process_unix.cpp @@ -183,7 +183,7 @@ Error SubProcessUnix::stop() { return ret ? ERR_INVALID_PARAMETER : OK; } - ERR_FAIL_V(ERR_BUG); + return OK; #endif }