summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common_funcs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index 842d62ca7..71d136d4a 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -97,6 +97,9 @@ __declspec(dllimport) void __stdcall DebugBreak(void);
97#define R_UNLESS(expr, res) \ 97#define R_UNLESS(expr, res) \
98 { \ 98 { \
99 if (!(expr)) { \ 99 if (!(expr)) { \
100 if (res.IsError()) { \
101 LOG_CRITICAL(Kernel, "Failed with error {}", res.raw); \
102 } \
100 return res; \ 103 return res; \
101 } \ 104 } \
102 } 105 }