libs/libc/string/lib_strsep.c: Fix typo that I introduced in the review.

This commit is contained in:
Gregory Nutt 2019-03-19 12:17:04 -06:00
parent 471a18ee4d
commit 0e4051a6b6

View File

@ -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;
}