diff options
author | Tom Tromey <tromey@redhat.com> | 2013-03-08 14:42:23 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-03-08 14:42:23 +0000 |
commit | 7da3ab792088f01bb2d2453e08ef7d5a4458982b (patch) | |
tree | 10339ce467c465d709d0f226c2116a760d327f5a /gdb/remote-m32r-sdi.c | |
parent | af924177b567aa87d8cd25cb2f6f245c737b029a (diff) | |
download | gdb-7da3ab792088f01bb2d2453e08ef7d5a4458982b.zip gdb-7da3ab792088f01bb2d2453e08ef7d5a4458982b.tar.gz gdb-7da3ab792088f01bb2d2453e08ef7d5a4458982b.tar.bz2 |
* remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
variable.
Diffstat (limited to 'gdb/remote-m32r-sdi.c')
-rw-r--r-- | gdb/remote-m32r-sdi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-m32r-sdi.c b/gdb/remote-m32r-sdi.c index 653cc7e..2b23273 100644 --- a/gdb/remote-m32r-sdi.c +++ b/gdb/remote-m32r-sdi.c @@ -1234,7 +1234,7 @@ m32r_load (char *args, int from_tty) { char *arg; - args = skip_spaces (arg); + args = skip_spaces (args); arg = args; |