Fix UE_LOG callsites that have format string-related UB

#rb trivial
#preflight 647107780a6634dbb236a0a6

[CL 25651638 by kirill zorin in ue5-main branch]
This commit is contained in:
kirill zorin
2023-05-26 15:52:39 -04:00
parent aab2e47433
commit b6ee3a6c64
184 changed files with 316 additions and 312 deletions

View File

@@ -22,7 +22,7 @@ public:
case ECookOnTheFlyNetworkServerProtocol::Platform:
return MakeShared<FCookOnTheFlyServerPlatformProtocol>(Options.TargetPlatforms);
default:
UE_LOG(LogCookOnTheFlyNetworkServer, Fatal, TEXT("Unsupported protocol: %d"), Options.Protocol);
UE_LOG(LogCookOnTheFlyNetworkServer, Fatal, TEXT("Unsupported protocol: %d"), int(Options.Protocol));
return nullptr;
}
}