summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2006-03-17 00:30:34 +0000
committerMichael Snyder <msnyder@specifix.com>2006-03-17 00:30:34 +0000
commit1d8cb33e0ec15be5ecebf1eddb99ea7ff920b078 (patch)
treeb078cf96b6a5001ba881ec90893a13148ead2e78
parent1efa6f600be95f79a6322f5618ecb1722a9ae318 (diff)
downloadgdb-1d8cb33e0ec15be5ecebf1eddb99ea7ff920b078.tar.gz
2006-03-16 Michael Snyder <msnyder@redhat.com>
* target.c (push_target): Fix typo in comment.
-rw-r--r--gdb/ChangeLog1
-rw-r--r--gdb/target.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6dc05680ae0..fa374faa3a1 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,6 @@
2006-03-16 Michael Snyder <msnyder@redhat.com>
+ * target.c (push_target): Fix typo in comment.
* remote.c (remote_watch_data_address): Fix typo in comment.
* i386-tdep.c (i386_push_dummy_call): Fix typo in comment.
diff --git a/gdb/target.c b/gdb/target.c
index 3da3e651311..fbfc58a6be5 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -675,7 +675,7 @@ push_target (struct target_ops *t)
}
/* If there's already targets at this stratum, remove them. */
- /* FIXME: cagney/2003-10-15: I think this should be poping all
+ /* 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)
{