mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-29 13:43:07 +00:00
FS-9581: fix signed/unsigned comparison build warning
This commit is contained in:
parent
7d6ed4a41d
commit
c4c460e7f2
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user