examples: size_t-correctness change in inspect_vm.c

This commit is contained in:
Richard W.M. Jones
2011-03-31 20:17:02 +01:00
parent 1612201a83
commit d5eb5216aa

View File

@@ -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)
;