Fix macOS `atos` invocation

This commit is contained in:
Jack Andersen 2016-09-29 17:31:24 -10:00
parent e397cb4b08
commit f601125b22
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ void logvisorAbort()
char cmdLine[1024];
#if __APPLE__
snprintf(cmdLine, 1024, "atos -p %p", getpid());
snprintf(cmdLine, 1024, "atos -p %d", getpid());
#else
snprintf(cmdLine, 1024, "addr2line -C -f -e \"%s\"", exeNameBuffer);
#endif