From d5eb5216aae0cb83fae686f490d1c3c37c2c074e Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 31 Mar 2011 20:17:02 +0100 Subject: [PATCH] examples: size_t-correctness change in inspect_vm.c --- examples/inspect_vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/inspect_vm.c b/examples/inspect_vm.c index 327a566..6c45aac 100644 --- a/examples/inspect_vm.c +++ b/examples/inspect_vm.c @@ -11,10 +11,10 @@ compare_keys_len (const void *p1, const void *p2) return strlen (key1) - strlen (key2); } -static int +static size_t count_strings (char *const *argv) { - int c; + size_t c; for (c = 0; argv[c]; ++c) ; -- 1.8.3.1