[Freeswitch-svn] [commit] r5896 - freeswitch/trunk/src
Freeswitch SVN
anthm at freeswitch.org
Tue Oct 16 12:49:53 EDT 2007
Author: anthm
Date: Tue Oct 16 12:49:53 2007
New Revision: 5896
Modified:
freeswitch/trunk/src/switch_utils.c
Log:
fix type
Modified: freeswitch/trunk/src/switch_utils.c
==============================================================================
--- freeswitch/trunk/src/switch_utils.c (original)
+++ freeswitch/trunk/src/switch_utils.c Tue Oct 16 12:49:53 2007
@@ -199,7 +199,7 @@
SWITCH_DECLARE(const char *) switch_stristr(const char *str, const char *instr)
{
- size_t score = strlen(str), x = 0;
+ switch_size_t score = strlen(str), x = 0;
const char *a = str, *b = instr, *p = NULL;
while(*a && *b) {
More information about the Freeswitch-svn
mailing list