fixed -W, working on -r

This commit is contained in:
elvis
2022-04-25 20:24:55 +02:00
parent d8a0220ade
commit e67d3b5580
8 changed files with 72 additions and 105 deletions

View File

@ -27,7 +27,7 @@ strsep_gnu (char **stringp, const char *delim)
if (begin == NULL)
return NULL;
/* Find the end of the token. */
end = begin + strcspn (begin, delim);
end = begin + strcspn(begin, delim);
if (*end)
{
/* Terminate the token and set *STRINGP past NUL character. */