]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix type
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 16 Oct 2007 16:49:53 +0000 (16:49 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 16 Oct 2007 16:49:53 +0000 (16:49 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5896 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_utils.c

index ddd9cb6e309220717ef922289b0139c87c8ba229..555c3e341ae9adec9274d21e29deb6f5215f060c 100644 (file)
@@ -199,7 +199,7 @@ SWITCH_DECLARE(switch_bool_t) switch_simple_email(char *to, char *from, char *he
 
 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) {