From 18143fd8de61ee82cc4f41176b299543bc70d93d Mon Sep 17 00:00:00 2001 From: Franjo Hornung <31935516+fhornung@users.noreply.github.com> Date: Tue, 23 Jul 2024 00:24:59 -0700 Subject: [PATCH] Update PosixCommon.cpp to prevent token error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed error: expected unqualified-id before ‘{’ token --- BeefySysLib/platform/posix/PosixCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefySysLib/platform/posix/PosixCommon.cpp b/BeefySysLib/platform/posix/PosixCommon.cpp index ae49def1..aa44a5a3 100644 --- a/BeefySysLib/platform/posix/PosixCommon.cpp +++ b/BeefySysLib/platform/posix/PosixCommon.cpp @@ -1241,7 +1241,7 @@ BFP_EXPORT void BFP_CALLTYPE BfpSpawn_GetStdHandles(BfpSpawn* spawn, BfpFile** o } } -BFP_EXPORT int BFP_CALLTYPE BfpSpawn_GetProcessId(BfpSpawn* spawn); +BFP_EXPORT int BFP_CALLTYPE BfpSpawn_GetProcessId(BfpSpawn* spawn) { return spawn->mPid; }