diff options
Diffstat (limited to 'dev/ZKA/Sources')
| -rw-r--r-- | dev/ZKA/Sources/LPC.cxx (renamed from dev/ZKA/Sources/HError.cxx) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ZKA/Sources/HError.cxx b/dev/ZKA/Sources/LPC.cxx index 5ccf8aea..46f621bb 100644 --- a/dev/ZKA/Sources/HError.cxx +++ b/dev/ZKA/Sources/LPC.cxx @@ -13,7 +13,7 @@ namespace Kernel /// @brief Does a system wide bug check. /// @param void no params. - /// @return if error-free: true, otherwise false. + /// @return if error-free: false, otherwise true. Boolean err_bug_check(void) noexcept { if (cRaise) @@ -21,7 +21,7 @@ namespace Kernel ke_stop(RUNTIME_CHECK_BAD_BEHAVIOR); } - return true; + return false; } /// @brief Tells if we should raise a bug check not. |
