From 23ec87984b9a204665e547fd9d2848e6cf51647a Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 1 Nov 2011 09:47:01 +0000 Subject: [PATCH] fish: Use size_t instead of int when counting strings. (cherry picked from commit b4da051d54a1597c7d8db8880d21a52265a6172e) --- fish/inspect.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 1.8.3.1