mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-22 03:09:16 +08:00
fix return type error of rt_strcasecmp: rt_uint32_t to rt_int32_t
Signed-off-by: lihui <leehui_hrbeu71102@163.com>
This commit is contained in:
+1
-1
@@ -370,7 +370,7 @@ RTM_EXPORT(rt_strstr);
|
||||
*
|
||||
* @return the result
|
||||
*/
|
||||
rt_uint32_t rt_strcasecmp(const char *a, const char *b)
|
||||
rt_int32_t rt_strcasecmp(const char *a, const char *b)
|
||||
{
|
||||
int ca, cb;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user