From f76a88011a993d059beafe090a21a20be1cb9f4d Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 13 Mar 2012 08:23:56 +0000 Subject: Replace 'int' with 'size_t' passim. Analyze all uses of 'int' in the code, and replace with 'size_t' where appropriate. --- fish/inspect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fish/inspect.c') diff --git a/fish/inspect.c b/fish/inspect.c index f93367b3..3358cd48 100644 --- a/fish/inspect.c +++ b/fish/inspect.c @@ -36,7 +36,7 @@ static char *root = NULL; static void free_strings (char **argv) { - int argc; + size_t argc; for (argc = 0; argv[argc] != NULL; ++argc) free (argv[argc]); -- cgit