Merge pull request #81 from extrowerk/patch-1

Build fix
This commit is contained in:
rxi 2020-05-11 13:31:33 +01:00 committed by GitHub
commit 2f659d5180
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ static void get_exe_dir(char *buf, int sz) {
unsigned size = sz;
_NSGetExecutablePath(buf, &size);
#else
strcpy(buf, ".")
strcpy(buf, ".");
#endif
for (int i = strlen(buf) - 1; i > 0; i--) {