Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: gdb/mi/mi-cmd-target.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/mi/mi-cmd-stack.c ('k') | gdb/mi/mi-cmd-var.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/mi/mi-cmd-target.c
diff --git a/gdb/mi/mi-cmd-target.c b/gdb/mi/mi-cmd-target.c
index edeedaf527f33aeb796dfc717f346b2a8e602f6b..e6e04a7d11d282a60b5714cb9e8eefa2bf4617fc 100644
--- a/gdb/mi/mi-cmd-target.c
+++ b/gdb/mi/mi-cmd-target.c
@@ -26,21 +26,21 @@
void
mi_cmd_target_file_get (char *command, char **argv, int argc)
{
- int optind = 0;
- char *optarg;
+ int oind = 0;
+ char *oarg;
const char *remote_file, *local_file;
static const struct mi_opt opts[] =
- {
- { 0, 0, 0 }
- };
+ {
+ { 0, 0, 0 }
+ };
static const char prefix[] = "-target-file-get";
- if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) != -1
- || optind != argc - 2)
+ if (mi_getopt (prefix, argc, argv, opts, &oind, &oarg) != -1
+ || oind != argc - 2)
error (_("-target-file-get: Usage: REMOTE_FILE LOCAL_FILE"));
- remote_file = argv[optind];
- local_file = argv[optind + 1];
+ remote_file = argv[oind];
+ local_file = argv[oind + 1];
remote_file_get (remote_file, local_file, 0);
}
@@ -50,21 +50,21 @@ mi_cmd_target_file_get (char *command, char **argv, int argc)
void
mi_cmd_target_file_put (char *command, char **argv, int argc)
{
- int optind = 0;
- char *optarg;
+ int oind = 0;
+ char *oarg;
const char *remote_file, *local_file;
static const struct mi_opt opts[] =
- {
- { 0, 0, 0 }
- };
+ {
+ { 0, 0, 0 }
+ };
static const char prefix[] = "-target-file-put";
- if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) != -1
- || optind != argc - 2)
+ if (mi_getopt (prefix, argc, argv, opts, &oind, &oarg) != -1
+ || oind != argc - 2)
error (_("-target-file-put: Usage: LOCAL_FILE REMOTE_FILE"));
- local_file = argv[optind];
- remote_file = argv[optind + 1];
+ local_file = argv[oind];
+ remote_file = argv[oind + 1];
remote_file_put (local_file, remote_file, 0);
}
@@ -74,20 +74,20 @@ mi_cmd_target_file_put (char *command, char **argv, int argc)
void
mi_cmd_target_file_delete (char *command, char **argv, int argc)
{
- int optind = 0;
- char *optarg;
+ int oind = 0;
+ char *oarg;
const char *remote_file;
static const struct mi_opt opts[] =
- {
- { 0, 0, 0 }
- };
+ {
+ { 0, 0, 0 }
+ };
static const char prefix[] = "-target-file-delete";
- if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) != -1
- || optind != argc - 1)
+ if (mi_getopt (prefix, argc, argv, opts, &oind, &oarg) != -1
+ || oind != argc - 1)
error (_("-target-file-delete: Usage: REMOTE_FILE"));
- remote_file = argv[optind];
+ remote_file = argv[oind];
remote_file_delete (remote_file, 0);
}
« no previous file with comments | « gdb/mi/mi-cmd-stack.c ('k') | gdb/mi/mi-cmd-var.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698