mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
examples: size_t-correctness change in inspect_vm.c
This commit is contained in:
@@ -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)
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user