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]

[hppa-linux/committed] Fix typo


Fix a typo from an earlier mechanical change. Committed as obvious.

randolph


2005-11-09  Randolph Chung <tausq@debian.org>

        * hppa-linux-nat.c (_initialize_hppa_linux_nat): Use
        hppa_linux_{store,fetch}_inferior_registers instead of
        arm_linux_{store,fetch}_inferior_registers.

Index: hppa-linux-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/hppa-linux-nat.c,v
retrieving revision 1.10
diff -u -p -r1.10 hppa-linux-nat.c
--- hppa-linux-nat.c    10 Sep 2005 18:11:02 -0000      1.10
+++ hppa-linux-nat.c    9 Nov 2005 07:19:19 -0000
@@ -388,8 +388,8 @@ _initialize_hppa_linux_nat (void)
   t = linux_target ();

   /* Add our register access methods.  */
-  t->to_fetch_registers = arm_linux_fetch_inferior_registers;
-  t->to_store_registers = arm_linux_store_inferior_registers;
+  t->to_fetch_registers = hppa_linux_fetch_inferior_registers;
+  t->to_store_registers = hppa_linux_store_inferior_registers;

   /* Register the target.  */
   add_target (t);


-- 
Randolph Chung
Debian GNU/Linux Developer, hppa/ia64 ports
http://www.tausq.org/


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