* mi/mi-cmd-env.c (mi_cmd_env_path): Rename `optind' and

`optarg' to `oind' and `oarg', respectively(-Wshadow).
(mi_cmd_env_dir): Ditto.
This commit is contained in:
Andrey Smirnov 2011-12-17 05:58:27 +00:00
parent 81493c6264
commit 7082409d2d
2 changed files with 19 additions and 13 deletions

View File

@ -1,7 +1,13 @@
2011-12-16 Andrey Smirnov <andrew.smirnov@gmail.com
2011-12-16 Andrey Smirnov <andrew.smirnov@gmail.com>
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Rename `optind' and `optarg'
to `oind' and `oarg', respectively(-Wshadow).
* mi/mi-cmd-env.c (mi_cmd_env_path): Rename `optind' and
`optarg' to `oind' and `oarg', respectively(-Wshadow).
(mi_cmd_env_dir): Ditto.
2011-12-16 Andrey Smirnov <andrew.smirnov@gmail.com>
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Rename `optind' and
`optarg' to `oind' and `oarg', respectively(-Wshadow).
2011-12-16 Andrey Smirnov <andrew.smirnov@gmail.com>

View File

@ -118,9 +118,9 @@ mi_cmd_env_path (char *command, char **argv, int argc)
char *exec_path;
char *env;
int reset = 0;
int optind = 0;
int oind = 0;
int i;
char *optarg;
char *oarg;
enum opt
{
RESET_OPT
@ -144,7 +144,7 @@ mi_cmd_env_path (char *command, char **argv, int argc)
while (1)
{
int opt = mi_getopt ("-environment-path", argc, argv, opts,
&optind, &optarg);
&oind, &oarg);
if (opt < 0)
break;
@ -155,8 +155,8 @@ mi_cmd_env_path (char *command, char **argv, int argc)
break;
}
}
argv += optind;
argc -= optind;
argv += oind;
argc -= oind;
if (reset)
@ -190,9 +190,9 @@ mi_cmd_env_dir (char *command, char **argv, int argc)
{
struct ui_out *uiout = current_uiout;
int i;
int optind = 0;
int oind = 0;
int reset = 0;
char *optarg;
char *oarg;
enum opt
{
RESET_OPT
@ -216,7 +216,7 @@ mi_cmd_env_dir (char *command, char **argv, int argc)
while (1)
{
int opt = mi_getopt ("-environment-directory", argc, argv, opts,
&optind, &optarg);
&oind, &oarg);
if (opt < 0)
break;
@ -227,8 +227,8 @@ mi_cmd_env_dir (char *command, char **argv, int argc)
break;
}
}
argv += optind;
argc -= optind;
argv += oind;
argc -= oind;
if (reset)
{