Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Dec 6, 2023
1 parent 15e89a1 commit 193a6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion self_hosted/paths.jou
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ elif MACOS:
assert ret < 0 # didn't fit
result = realloc(result, n)
ret = _NSGetExecutablePath(result, &n)
if ret == 0:
if ret != 0:
fail_finding_exe()
return result

Expand Down

0 comments on commit 193a6fa

Please sign in to comment.