fixed -W, working on -r
This commit is contained in:
@ -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. */
|
||||
|
||||
Reference in New Issue
Block a user