Fix some warnings on gcc/clang

This commit is contained in:
Filip Gawin
2021-01-02 21:54:40 +01:00
parent 9c578580ec
commit c26386c112
16 changed files with 72 additions and 69 deletions
+1 -1
View File
@@ -665,7 +665,7 @@ correctPathCase(char *filename)
sofar[2] = '\0';
arg++;
}
while(dir = strtok(arg, PSEP_S)){
while((dir = strtok(arg, PSEP_S))){
arg = nil;
if(direct = opendir(sofar), dir == nil)
return;