FS-7500: fix signed error

This commit is contained in:
Anthony Minessale 2015-02-05 22:43:38 -06:00 committed by Michael Jerris
parent 3e323e3b09
commit 1bb8c0a8fc
1 changed files with 1 additions and 1 deletions

View 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;