libs/libc/string/lib_strsep.c: Fix typo that I introduced in the review.
This commit is contained in:
parent
471a18ee4d
commit
0e4051a6b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue