From: Guido van Rossum Date: Tue, 13 May 1997 19:19:41 +0000 (+0000) Subject: Keep gcc -Wall happy. X-Git-Tag: v1.5a2~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d3246d0e46e5b1a81c72629e118288d32f66fef;p=thirdparty%2FPython%2Fcpython.git Keep gcc -Wall happy. --- diff --git a/Modules/getpath.c b/Modules/getpath.c index fccd79f3aefc..7632aeb9c038 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);