diff --git a/src/porting.cpp b/src/porting.cpp index 1834fb7c8..eb7fea94c 100644 --- a/src/porting.cpp +++ b/src/porting.cpp @@ -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;