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]

[Ob] Fix typo in comment


2006-03-16  Michael Snyder  <msnyder@redhat.com>

	* target.c (push_target): Fix typo in comment.

Index: target.c
===================================================================
RCS file: /cvs/src/src/gdb/target.c,v
retrieving revision 1.116
diff -p -r1.116 target.c
*** target.c	8 Feb 2006 06:43:00 -0000	1.116
--- target.c	17 Mar 2006 00:29:30 -0000
*************** push_target (struct target_ops *t)
*** 675,681 ****
      }
  
    /* If there's already targets at this stratum, remove them.  */
!   /* FIXME: cagney/2003-10-15: I think this should be poping all
       targets to CUR, and not just those at this stratum level.  */
    while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
      {
--- 675,681 ----
      }
  
    /* If there's already targets at this stratum, remove them.  */
!   /* FIXME: cagney/2003-10-15: I think this should be popping all
       targets to CUR, and not just those at this stratum level.  */
    while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
      {

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