From: Richard W.M. Jones Date: Tue, 1 Nov 2011 09:47:01 +0000 (+0000) Subject: fish: Use size_t instead of int when counting strings. X-Git-Tag: 1.15.1~4 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=b4da051d54a1597c7d8db8880d21a52265a6172e fish: Use size_t instead of int when counting strings. --- diff --git a/fish/inspect.c b/fish/inspect.c index 2ca54d2..0b82ade 100644 --- a/fish/inspect.c +++ b/fish/inspect.c @@ -43,14 +43,14 @@ free_strings (char **argv) free (argv); } -static int +static size_t count_strings (char *const *argv) { - int c; + size_t i; - for (c = 0; argv[c]; ++c) + for (i = 0; argv[i]; ++i) ; - return c; + return i; } static int