]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
change type of int
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 3 Oct 2014 15:15:02 +0000 (10:15 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Fri, 3 Oct 2014 15:15:02 +0000 (10:15 -0500)
src/switch_stfu.c

index 8dfd5e1e303c6e5d1589770e07bc544b3cbf2e48..a04889bd5172bce9d2729b7fa6b62ffca377aff1 100644 (file)
@@ -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;