Skip to content

Commit 301f34c

Browse files
committed
comparison between signed and unsigned integer expressions
1 parent f579475 commit 301f34c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/stubby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ static void request_cb(
465465
int i;
466466
int options_changed = 0;
467467

468-
for (i = 0; i < n_options; i++) {
468+
for (i = 0; i < (int)n_options; i++) {
469469
getdns_dict *option;
470470
uint32_t option_code;
471471
uint8_t a_byte;

0 commit comments

Comments
 (0)