Skip to content

Commit

Permalink
Fix macOS atos invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
jackoalan committed Sep 30, 2016
1 parent e397cb4 commit f601125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/logvisor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f601125

Please sign in to comment.