Silence some warnings

This commit is contained in:
Paul A. Patience
2016-05-26 12:01:15 -04:00
parent b36d125e33
commit f8f7b7582c
12 changed files with 100 additions and 73 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ FAR char *strcasestr(FAR const char *str, FAR const char *substr)
{
FAR const char *candidate; /* Candidate in str with matching start character */
char ch; /* First character of the substring */
int len; /* The length of the substring */
size_t len; /* The length of the substring */
/* Special case the empty substring */
+1 -1
View File
@@ -49,7 +49,7 @@ FAR char *strstr(FAR const char *str, FAR const char *substr)
{
FAR const char *candidate; /* Candidate in str with matching start character */
char ch; /* First character of the substring */
int len; /* The length of the substring */
size_t len; /* The length of the substring */
/* Special case the empty substring */