diff options
| author | Martin Ridgers <[email protected]> | 2021-09-15 12:51:01 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-16 09:34:29 +0200 |
| commit | c55df8f9cdded0da0dc6a4d6a42e043e46e9b27f (patch) | |
| tree | 641bcabb74352ade62a24d4af0563558a219b43e /zenhttp/httpsys.cpp | |
| parent | Merge branch 'main' into linux-mac (diff) | |
| download | zen-c55df8f9cdded0da0dc6a4d6a42e043e46e9b27f.tar.xz zen-c55df8f9cdded0da0dc6a4d6a42e043e46e9b27f.zip | |
GetWindowsErrorAsString() -> GetErrorAsString()
Diffstat (limited to 'zenhttp/httpsys.cpp')
| -rw-r--r-- | zenhttp/httpsys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/httpsys.cpp b/zenhttp/httpsys.cpp index e8da9cb90..80e1b8ee9 100644 --- a/zenhttp/httpsys.cpp +++ b/zenhttp/httpsys.cpp @@ -418,7 +418,7 @@ HttpMessageResponseRequest::HandleCompletion(ULONG IoResult, ULONG_PTR NumberOfB if (IoResult) { - ZEN_WARN("response aborted due to error: '{}'", GetWindowsErrorAsString(IoResult)); + ZEN_WARN("response aborted due to error: '{}'", GetErrorAsString(IoResult)); // if one transmit failed there's really no need to go on return nullptr; |