From 548efb83da104f90b04b815bb58d3cb4ce519ca1 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 23 Oct 2013 16:18:28 -0600 Subject: [PATCH] Fix sign compare warning. --- plugins/sudoers/regress/parser/check_fill.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/sudoers/regress/parser/check_fill.c b/plugins/sudoers/regress/parser/check_fill.c index 6ff807628..ce7c3ca4d 100644 --- a/plugins/sudoers/regress/parser/check_fill.c +++ b/plugins/sudoers/regress/parser/check_fill.c @@ -133,8 +133,8 @@ static int do_tests(int (*checker)(const char *, int, int, const char *, char **), struct fill_test *data, size_t ntests) { - int i, len; - int errors = 0; + int len, errors = 0; + unsigned int i; char *result; for (i = 0; i < ntests; i++) { -- 2.40.0