1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix build on OS X (Thanks neoascetic)

This commit is contained in:
kwolekr 2015-04-20 01:35:41 -04:00
parent 3d4244cc75
commit a443a13a9d

View file

@ -388,7 +388,8 @@ bool getCurrentExecPath(char *buf, size_t len)
bool getCurrentExecPath(char *buf, size_t len)
{
if (_NSGetExecutablePath(buf, &len) == -1)
uint32_t lenb = (uint32_t)len;
if (_NSGetExecutablePath(buf, &lenb) == -1)
return false;
return true;