This is the mail archive of the gdb-patches@sources.redhat.com 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]

[COMMIT] Fix typo in last commit


Sorry about this.  Fixed now.

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>
 
	* hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_unwind_cache): Fix
	typo.

Index: hppa-hpux-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/hppa-hpux-tdep.c,v
retrieving revision 1.31
diff -u -p -r1.31 hppa-hpux-tdep.c
--- hppa-hpux-tdep.c 10 Dec 2004 10:45:33 -0000 1.31
+++ hppa-hpux-tdep.c 10 Dec 2004 15:26:57 -0000
@@ -1169,7 +1169,7 @@ hppa_hpux_sigtramp_frame_unwind_cache (s
       off += incr;
     }
 
-  for (i = 0; ARRAY_SIZE (hppa_hpux_tramp_reg); i++)
+  for (i = 0; i < ARRAY_SIZE (hppa_hpux_tramp_reg); i++)
     {
       if (hppa_hpux_tramp_reg[i] > 0)
         info->saved_regs[hppa_hpux_tramp_reg[i]].addr = off + szoff;


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