[master] Silence compiler warnings about comparisons between signed and unsigned integers [RT #46980]

This commit is contained in:
Michał Kępień 2018-02-01 21:25:37 +01:00
parent 46d7d8717a
commit a3c2b8831e

View file

@ -192,8 +192,8 @@ tables_init(void) {
* This function destroys (modifies) the data passed in bits.
*/
static isc_uint32_t
matrix_binaryrank(isc_uint32_t *bits, ssize_t rows, ssize_t cols) {
ssize_t i, j, k;
matrix_binaryrank(isc_uint32_t *bits, size_t rows, size_t cols) {
size_t i, j, k;
unsigned int rt = 0;
isc_uint32_t rank = 0;
isc_uint32_t tmp;