From 1f5a18ea2db8b8d801e6070ff32b28d3ab5eac3f Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 10 Nov 2021 20:12:30 +0100 Subject: [PATCH] Fix Linux build --- Source/Engine/Platform/Linux/LinuxPlatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Platform/Linux/LinuxPlatform.cpp b/Source/Engine/Platform/Linux/LinuxPlatform.cpp index e86926fd2..3e1ac5b42 100644 --- a/Source/Engine/Platform/Linux/LinuxPlatform.cpp +++ b/Source/Engine/Platform/Linux/LinuxPlatform.cpp @@ -2018,7 +2018,7 @@ bool LinuxPlatform::Init() // Get user name string char buffer[UNIX_APP_BUFF_SIZE]; getlogin_r(buffer, UNIX_APP_BUFF_SIZE); - OnPlatformUserAdd(New(String(buffer)); + OnPlatformUserAdd(New(String(buffer))); UnixGetMacAddress(MacAddress);