You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user