From 7d3246d0e46e5b1a81c72629e118288d32f66fef Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 13 May 1997 19:19:41 +0000 Subject: [PATCH] Keep gcc -Wall happy. --- Modules/getpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/getpath.c b/Modules/getpath.c index fccd79f3ae..7632aeb9c0 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -201,7 +201,7 @@ search_for_prefix(argv0_path, home) char *argv0_path; char *home; { - int i, n; + int n; char *vpath; /* Check to see if argv[0] is in the build directory */ @@ -271,7 +271,7 @@ search_for_exec_prefix(argv0_path, home) char *argv0_path; char *home; { - int i, n; + int n; /* Check to see if argv[0] is in the build directory */ strcpy(exec_prefix, argv0_path); -- 2.50.1