libs/libc/string/lib_strsep.c: Fix typo that I introduced in the review.
This commit is contained in:
parent
471a18ee4d
commit
0e4051a6b6
@ -66,7 +66,7 @@ FAR char *strsep(FAR char **strp, FAR const char *delim)
|
||||
FAR char *sbegin = *strp;
|
||||
FAR char *end;
|
||||
|
||||
if !sbegin == NULL)
|
||||
if (sbegin == NULL)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user