litle edit

This commit is contained in:
gazhonsepaskwa
2025-02-17 15:54:37 +01:00
parent 53967dbed2
commit 01e6313aa5

View File

@@ -57,7 +57,7 @@ int skip_quote(char *str)
if (!str[1])
return 0;
i = 1;
while(str[i] && (str[i] != '\'' || str[i] != '"'))
while(str[i] && str[i] != '\'' && str[i] != '"')
i++;
return (i);
}