浏览代码

change rt_size_t to size_t in the parameter of strncasecmp function.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@64 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong 16 年之前
父节点
当前提交
16a313d087
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      filesystem/dfs/include/dfs_util.h

+ 1 - 1
filesystem/dfs/include/dfs_util.h

@@ -28,7 +28,7 @@ int str_is_prefix(const char* prefix, const char* str);
 #if !defined(RT_USING_MINILIBC) && !defined(RT_USING_NEWLIB)
 #if !defined(RT_USING_MINILIBC) && !defined(RT_USING_NEWLIB)
 char *strrchr(const char *t, int c);
 char *strrchr(const char *t, int c);
 #if defined (__ARMCC_VERSION) && (__ARMCC_VERSION / 10000 < 35)
 #if defined (__ARMCC_VERSION) && (__ARMCC_VERSION / 10000 < 35)
-int strncasecmp(const char* s1, const char* s2, rt_size_t len);
+int strncasecmp(const char* s1, const char* s2, size_t len);
 #endif /* end of __ARMCC_VERSION */
 #endif /* end of __ARMCC_VERSION */
 #endif
 #endif