]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7500: fix signed error
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 6 Feb 2015 04:43:38 +0000 (22:43 -0600)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:46:58 +0000 (12:46 -0500)
src/include/switch_utils.h

index 4604e620b878223e3a7bc8ed1ded76c0d1108c2a..639853f57185904899c4e05b93efa9b004ab3bca 100644 (file)
@@ -978,7 +978,7 @@ SWITCH_DECLARE(char *) switch_util_quote_shell_arg_pool(const char *string, swit
 
 static inline uint32_t switch_parse_bandwidth_string(const char *bwv)
 {
-       uint32_t bw = 0;
+       int32_t bw = 0;
 
        if (!bwv) return 0;