+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
/* 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)
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;
}
}
- 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)
};
/* 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;
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)