Common/FileSystem: uint32 -> u32

This commit is contained in:
Connor McLaughlin 2020-02-15 10:34:48 +09:00
parent 244302557f
commit 2ac8f7a6ac
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{