* mi/mi-cmd-break.c (mi_cmd_break_insert): Rename `optind' and

`optparg' to `oind' and `oparg', respectively(-Wshadow).
(mi_cmd_break_watch): Ditto.
This commit is contained in:
Andrey Smirnov 2011-12-17 05:49:34 +00:00
parent 65f63e5015
commit f8c000a26c
2 changed files with 21 additions and 15 deletions

View File

@ -1,3 +1,9 @@
2011-12-16 Andrey Smirnov <andrew.smirnov@gmail.com>
* mi/mi-cmd-break.c (mi_cmd_break_insert): Rename `optind' and
`optparg' to `oind' and `oparg', respectively(-Wshadow).
(mi_cmd_break_watch): Ditto.
2011-12-16 Tom Tromey <tromey@redhat.com>
* linespec.c (collect_symbols): Call maybe_add_address after

View File

@ -99,13 +99,13 @@ mi_cmd_break_insert (char *command, char **argv, int argc)
/* Parse arguments. It could be -r or -h or -t, <location> or ``--''
to denote the end of the option list. */
int optind = 0;
char *optarg;
int oind = 0;
char *oarg;
while (1)
{
int opt = mi_getopt ("-break-insert", argc, argv,
opts, &optind, &optarg);
opts, &oind, &oarg);
if (opt < 0)
break;
switch ((enum opt) opt)
@ -117,13 +117,13 @@ mi_cmd_break_insert (char *command, char **argv, int argc)
hardware = 1;
break;
case CONDITION_OPT:
condition = optarg;
condition = oarg;
break;
case IGNORE_COUNT_OPT:
ignore_count = atol (optarg);
ignore_count = atol (oarg);
break;
case THREAD_OPT:
thread = atol (optarg);
thread = atol (oarg);
break;
case PENDING_OPT:
pending = 1;
@ -137,11 +137,11 @@ mi_cmd_break_insert (char *command, char **argv, int argc)
}
}
if (optind >= argc)
if (oind >= argc)
error (_("-break-insert: Missing <location>"));
if (optind < argc - 1)
if (oind < argc - 1)
error (_("-break-insert: Garbage following <location>"));
address = argv[optind];
address = argv[oind];
/* Now we have what we need, let's insert the breakpoint! */
if (! mi_breakpoint_observers_installed)
@ -229,13 +229,13 @@ mi_cmd_break_watch (char *command, char **argv, int argc)
};
/* Parse arguments. */
int optind = 0;
char *optarg;
int oind = 0;
char *oarg;
while (1)
{
int opt = mi_getopt ("-break-watch", argc, argv,
opts, &optind, &optarg);
opts, &oind, &oarg);
if (opt < 0)
break;
@ -249,11 +249,11 @@ mi_cmd_break_watch (char *command, char **argv, int argc)
break;
}
}
if (optind >= argc)
if (oind >= argc)
error (_("-break-watch: Missing <expression>"));
if (optind < argc - 1)
if (oind < argc - 1)
error (_("-break-watch: Garbage following <expression>"));
expr = argv[optind];
expr = argv[oind];
/* Now we have what we need, let's insert the watchpoint! */
switch (type)