apply clang-format

This commit is contained in:
Reg Tiangha 2024-03-23 09:53:04 -06:00
parent b90569700c
commit 12b30be45e
No known key found for this signature in database
GPG key ID: 00D437798B1C2970
2 changed files with 3 additions and 2 deletions

View file

@ -2251,7 +2251,7 @@ std::optional<SOC_U::InterfaceInfo> SOC_U::GetDefaultInterfaceInfo() {
socklen_t s_info_len = sizeof(struct sockaddr_in);
sockaddr_in s_info;
if (static_cast<int>(sock_fd = ::socket(AF_INET, SOCK_STREAM, 0)) == -1) {
if (static_cast<int>(sock_fd = ::socket(AF_INET, SOCK_STREAM, 0)) == -1) {
return std::nullopt;
}