From 2ac8f7a6ac08e005f7461eb16699dda80216c8d3 Mon Sep 17 00:00:00 2001
From: Connor McLaughlin <stenzek@gmail.com>
Date: Sat, 15 Feb 2020 10:34:48 +0900
Subject: [PATCH] Common/FileSystem: uint32 -> u32

---
 src/common/file_system.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/file_system.cpp b/src/common/file_system.cpp
index 1f0507807..c10035e48 100644
--- a/src/common/file_system.cpp
+++ b/src/common/file_system.cpp
@@ -1396,7 +1396,7 @@ std::string GetProgramPath()
   char* buffer = static_cast<char*>(std::realloc(nullptr, curSize));
   for (;;)
   {
-    uint32 nChars = curSize - 1;
+    u32 nChars = curSize - 1;
     int res = _NSGetExecutablePath(buffer, &nChars);
     if (res == 0)
     {