Skip to content

Commit

Permalink
fix windows mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesneimog committed Sep 22, 2024
1 parent 57e5e27 commit 3e01db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ char *Py4pdUtils_GetFolderName(char *Path) {

// Find the last occurrence of a path separator
#ifdef _WIN32
FolderSeparator = strrchr(path, '\\');
FolderSeparator = strrchr(Path, '\\');
#else
FolderSeparator = strrchr(Path, '/');
#endif
Expand Down

0 comments on commit 3e01db1

Please sign in to comment.