summaryrefslogtreecommitdiff
path: root/nuttx/libc/string
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libc/string')
-rw-r--r--nuttx/libc/string/lib_strcasestr.c4
-rw-r--r--nuttx/libc/string/lib_strstr.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/nuttx/libc/string/lib_strcasestr.c b/nuttx/libc/string/lib_strcasestr.c
index 5a8d53bee..7f17a686d 100644
--- a/nuttx/libc/string/lib_strcasestr.c
+++ b/nuttx/libc/string/lib_strcasestr.c
@@ -127,7 +127,9 @@ FAR char *strcasestr(FAR const char *str, FAR const char *substr)
candidate++;
}
- /* Won't get here, but some compilers might complain */
+ /* Won't get here, but some compilers might complain. Others might complain
+ * about this code being unreachable too.
+ */
return NULL;
}
diff --git a/nuttx/libc/string/lib_strstr.c b/nuttx/libc/string/lib_strstr.c
index 02f4809d2..7a60a680d 100644
--- a/nuttx/libc/string/lib_strstr.c
+++ b/nuttx/libc/string/lib_strstr.c
@@ -97,7 +97,9 @@ char *strstr(const char *str, const char *substr)
candidate++;
}
- /* Won't get here, but some compilers might complain */
+ /* Won't get here, but some compilers might complain. Other compilers
+ * might complain about this code being unreachable too.
+ */
return NULL;
}