aboutsummaryrefslogtreecommitdiff
path: root/zencore/except.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zencore/except.cpp')
-rw-r--r--zencore/except.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/except.cpp b/zencore/except.cpp
index 8614b52e1..ebaecf815 100644
--- a/zencore/except.cpp
+++ b/zencore/except.cpp
@@ -76,9 +76,9 @@ GetLastErrorAsString()
}
std::string
-GetSystemErrorAsString(uint32_t Win32ErrorCode)
+GetSystemErrorAsString(uint32_t ErrorCode)
{
- return std::error_code(Win32ErrorCode, std::system_category()).message();
+ return std::error_code(ErrorCode, std::system_category()).message();
}
#if __cpp_lib_source_location