revert commenting of chdir on macOS

This commit is contained in:
Ian Gilham 2020-03-12 16:59:40 +00:00
parent c4f3a1f936
commit 5bd2e96ece
No known key found for this signature in database
GPG Key ID: 9597F133EF2FC115
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ int main(int argc, char **argv)
char path[PATH_MAX];
if (CFURLGetFileSystemRepresentation(resourcesURL, TRUE, (UInt8 *)path, PATH_MAX))
{
// chdir(path);
chdir(path);
printf("Current directory \"%s\"\n", path);
}
else