Skip to content

Commit

Permalink
Disable LTO for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartatz committed May 7, 2024
1 parent 66710cc commit b3f70f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ char* get_app_filename(char* const filename) {
for (size_t index = 0; index < strlen(path) + 1; index++) {
const char* const ch = &path[index];

if (!(*ch == *COLON || *ch == '\0')) {
if (!(*ch == ':' || *ch == '\0')) {
continue;
}

Expand Down

0 comments on commit b3f70f3

Please sign in to comment.