summaryrefslogtreecommitdiff
path: root/zen/sys_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/sys_error.h')
-rw-r--r--zen/sys_error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/sys_error.h b/zen/sys_error.h
index f4b867be..99cf9316 100644
--- a/zen/sys_error.h
+++ b/zen/sys_error.h
@@ -43,7 +43,7 @@ private:
#define THROW_LAST_SYS_ERROR(functionName) \
- do { const ErrorCode ecInternal = getLastError(); throw SysError(formatSystemError(functionName, ecInternal)); } while (false)
+ do { const ErrorCode ecInternal = getLastError(); throw zen::SysError(formatSystemError(functionName, ecInternal)); } while (false)
/* Example: ASSERT_SYSERROR(expr);
bgstack15