_parse_key will now return 1 if the key DOES have arguments

pull/19/head
Sara 2023-07-17 00:43:50 +02:00
parent 3dd5b82cb0
commit 56956f9330
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ int _parse_key(FILE* file, char* out) {
} }
} while(c != ':' && c != ';'); } while(c != ':' && c != ';');
return c != ':'; return c == ':';
} }
static static