FS-9581: fix signed/unsigned comparison build warning

This commit is contained in:
Mike Jerris 2016-10-24 11:57:51 -04:00
parent 7d6ed4a41d
commit c4c460e7f2
1 changed files with 2 additions and 2 deletions

View File

@ -377,8 +377,8 @@ SWITCH_DECLARE(char *) switch_amp_encode(char *s, char *buf, switch_size_t len);
static inline char *switch_print_bits(const unsigned char *byte, char *buf, switch_size_t buflen) static inline char *switch_print_bits(const unsigned char *byte, char *buf, switch_size_t buflen)
{ {
int i;
int i, j = 0, k = 0, l = 0; switch_size_t j = 0, k = 0, l = 0;
while(k < buflen) { while(k < buflen) {
l = 0; l = 0;