Skip to content

Commit

Permalink
Fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Oipo committed Sep 22, 2024
1 parent be3126c commit 5f5ba67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/network/tcp/IOUringTcpHostService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Ichor::Task<tl::expected<void, Ichor::StartError>> Ichor::IOUringTcpHostService:
if(_bindFd == -1) {
close(_socket);
_socket = -1;
ICHOR_LOG_ERROR(_logger, "Couldn't bind socket with address {} port {}: {}", addressProp == cend(getProperties()) ? std::string{"ANY"} : Ichor::any_cast<std::string>(addressProp->second), Ichor::any_cast<uint16_t>((getProperties())["Port"]), mapErrnoToError(-res));
ICHOR_LOG_ERROR(_logger, "Couldn't bind socket with address {} port {}: {}", addressProp == cend(getProperties()) ? std::string{"ANY"} : Ichor::any_cast<std::string>(addressProp->second), Ichor::any_cast<uint16_t>((getProperties())["Port"]), mapErrnoToError(errno));
co_return tl::unexpected(StartError::FAILED);
}

Expand Down

0 comments on commit 5f5ba67

Please sign in to comment.