libqcdm,modepref: fix warnings with -Wsign-compare

modepref.c: In function ‘print_buf’:
  modepref.c:46:16: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare]
     46 |  for (i = 0; i < len; i++) {
        |                ^
  modepref.c: In function ‘qcdm_wait_reply’:
  modepref.c:167:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Wsign-compare]
    167 |  } while (total < sizeof (readbuf));
        |                 ^
This commit is contained in:
Aleksander Morgado
2019-11-20 15:57:20 +01:00
parent 4fa669b894
commit 17a00ce1fc

View File

@@ -36,7 +36,7 @@ static int debug = 0;
static void static void
print_buf (const char *detail, const char *buf, size_t len) print_buf (const char *detail, const char *buf, size_t len)
{ {
int i = 0, z; unsigned int i, z;
qcdmbool newline = FALSE; qcdmbool newline = FALSE;
char tmp[500]; char tmp[500];
uint32_t flen; uint32_t flen;
@@ -120,7 +120,7 @@ qcdm_wait_reply (int fd, char *buf, size_t len)
struct timeval timeout = { 1, 0 }; struct timeval timeout = { 1, 0 };
char readbuf[1024]; char readbuf[1024];
ssize_t bytes_read; ssize_t bytes_read;
int total = 0, retries = 0; unsigned int total = 0, retries = 0;
size_t decap_len = 0; size_t decap_len = 0;
FD_ZERO (&in); FD_ZERO (&in);