From aac58b10f95f94a201a9a727ddfa2be5b62c8b5a Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 16 Oct 2007 16:49:53 +0000 Subject: [PATCH] fix type git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5896 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_utils.c b/src/switch_utils.c index ddd9cb6e30..555c3e341a 100644 --- a/src/switch_utils.c +++ b/src/switch_utils.c @@ -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) {