summaryrefslogtreecommitdiff
path: root/nuttx/libc/string/lib_strpbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libc/string/lib_strpbrk.c')
-rw-r--r--nuttx/libc/string/lib_strpbrk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/string/lib_strpbrk.c b/nuttx/libc/string/lib_strpbrk.c
index ef9b0f3e9..3f19dec6e 100644
--- a/nuttx/libc/string/lib_strpbrk.c
+++ b/nuttx/libc/string/lib_strpbrk.c
@@ -55,7 +55,7 @@ char *strpbrk(const char *str, const char *charset)
return NULL;
}
#endif
-
+
/* Check each character in the string */
while (*str)