From 21d4aec7f776d4874feefd7a175539fc06e80cc6 Mon Sep 17 00:00:00 2001 From: Joshua Scoggins Date: Sun, 17 Apr 2016 22:40:08 -0700 Subject: [PATCH] Follow coding conventions --- Sources/Engine/Engine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/Engine/Engine.cpp b/Sources/Engine/Engine.cpp index dc81201..095d584 100644 --- a/Sources/Engine/Engine.cpp +++ b/Sources/Engine/Engine.cpp @@ -321,7 +321,8 @@ static void SanityCheckTypes(void) #endif } // don't want to export this function -void PlatformIdentification() { +static void PlatformIdentification(void) +{ #if (defined PLATFORM_WIN32) OSVERSIONINFO osv; memset(&osv, 0, sizeof(osv));