This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: fix typo in remote-m32r-sdi.c


I'm checking this in as obvious.

Keith's skip_spaces had a buglet.
This is the fix.

Tom

2013-03-08  Tom Tromey  <tromey@redhat.com>

	* remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
	variable.

Index: remote-m32r-sdi.c
===================================================================
RCS file: /cvs/src/src/gdb/remote-m32r-sdi.c,v
retrieving revision 1.70
diff -u -r1.70 remote-m32r-sdi.c
--- remote-m32r-sdi.c	7 Mar 2013 21:57:30 -0000	1.70
+++ remote-m32r-sdi.c	8 Mar 2013 14:40:19 -0000
@@ -1234,7 +1234,7 @@
     {
       char *arg;
 
-      args = skip_spaces (arg);
+      args = skip_spaces (args);
 
       arg = args;
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]