diff options
-rw-r--r-- | Modules/getpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c index fccd79f..7632aeb 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); |