summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/porting.cpp3
1 files changed, 2 insertions, 1 deletions
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;