From: Anthony Minessale Date: Fri, 3 Oct 2014 15:15:02 +0000 (-0500) Subject: change type of int X-Git-Tag: v1.4.10~1^2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bed5d09a12dfd4a3789fdcc29c39a1a42517111;p=thirdparty%2Ffreeswitch.git change type of int --- diff --git a/src/switch_stfu.c b/src/switch_stfu.c index 8dfd5e1e30..a04889bd51 100644 --- a/src/switch_stfu.c +++ b/src/switch_stfu.c @@ -268,7 +268,7 @@ void stfu_n_report(stfu_instance_t *i, stfu_report_t *r) stfu_status_t _stfu_n_resize(stfu_instance_t *i, int32_t qlen, int line) { stfu_status_t s; - uint32_t incr = qlen; + int32_t incr = qlen; if (i->qlen == i->max_qlen) { return STFU_IT_FAILED;