Remove missed FMT_STRING macro call

This commit is contained in:
2025-01-02 15:35:34 -08:00
parent af3580fbb3
commit e0fbcfee7e

View File

@@ -171,7 +171,7 @@ Socket::EResult Socket::accept(Socket& remoteSocketOut, sockaddr_in& fromAddress
#else
EResult res = LastWSAError();
if (res == EResult::Error)
atError(FMT_STRING("Failed to accept incoming connection"));
atError("Failed to accept incoming connection");
#endif
return res;
}