Changeset 4537 for pjproject/trunk/pjlib/src/pjlib-test/errno.c
- Timestamp:
- Jun 19, 2013 6:47:43 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pjlib-test/errno.c
r3553 r4537 29 29 #define THIS_FILE "errno" 30 30 31 #if defined(PJ_WIN32) && PJ_WIN32 != 0 31 #if (defined(PJ_WIN32) && PJ_WIN32 != 0) || \ 32 (defined(PJ_WIN64) && PJ_WIN64 != 0) 32 33 # include <windows.h> 33 34 #endif … … 60 61 const char *my_stristr(const char *whole, const char *part) 61 62 { 62 int part_len = strlen(part);63 int part_len = (int)strlen(part); 63 64 while (*whole) { 64 65 if (my_strncasecmp(whole, part, part_len) == 0)
Note: See TracChangeset
for help on using the changeset viewer.