aboutsummaryrefslogtreecommitdiff
path: root/src/zenhttp/servers/httpsys.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-16 10:56:58 +0100
committerGitHub Enterprise <[email protected]>2026-03-16 10:56:58 +0100
commit7079dcf0d77f1ff4cfe66f87f21710068223a8d0 (patch)
tree69f4b4ffea7da9b02e5cbf23b74c19558027007e /src/zenhttp/servers/httpsys.cpp
parentFix thread vector growth in dynamic thread pools (diff)
parentEnable cross compilation of Windows targets on Linux (#839) (diff)
downloadzen-7079dcf0d77f1ff4cfe66f87f21710068223a8d0.tar.xz
zen-7079dcf0d77f1ff4cfe66f87f21710068223a8d0.zip
Merge branch 'main' into sb/threadpool
Diffstat (limited to 'src/zenhttp/servers/httpsys.cpp')
-rw-r--r--src/zenhttp/servers/httpsys.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/servers/httpsys.cpp b/src/zenhttp/servers/httpsys.cpp
index eaf080960..2074fbd79 100644
--- a/src/zenhttp/servers/httpsys.cpp
+++ b/src/zenhttp/servers/httpsys.cpp
@@ -1176,7 +1176,7 @@ HttpSysServer::RegisterHttpUrls(int BasePort)
{
Result = HttpAddUrlToUrlGroup(m_HttpUrlGroupId, WildcardUrlPath.c_str(), HTTP_URL_CONTEXT(0), 0);
- if ((Result == ERROR_SHARING_VIOLATION))
+ if (Result == ERROR_SHARING_VIOLATION)
{
ZEN_INFO("Desired port {} is in use (HttpAddUrlToUrlGroup returned: {}), retrying",
EffectivePort,