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]

[PATCH] long-standing type in frame.h


Hi all,
this typo was in frame.h more than half a year. There is neither struct unwind_contect, nor unwind_context and every use of frame_info->context is explicitly casted to (struct context *), so I've changed it here. Committed as obvious.

2002-06-18 Michal Ludvig <mludvig@suse.cz>

* frame.h (struct frame_info): Change type of context to
'struct context *'.

Index: frame.h
===================================================================
RCS file: /cvs/src/src/gdb/frame.h,v
retrieving revision 1.19
diff -u -p -r1.19 frame.h
--- frame.h 10 Jun 2002 23:25:50 -0000 1.19
+++ frame.h 18 Jun 2002 08:39:46 -0000
@@ -133,7 +133,7 @@ struct frame_info

/* If dwarf2 unwind frame informations is used, this structure holds all
related unwind data. */
- struct unwind_contect *context;
+ struct context *context;

/* See description above. Return the register value for the
previous frame. */


Michal Ludvig
--
* SuSE CR, s.r.o * mludvig@suse.cz
* +420 2 9654 5373 * http://www.suse.cz



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