summaryrefslogtreecommitdiff
path: root/libiberty/splay-tree.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2002-09-12 01:11:29 +0000
committerDJ Delorie <dj@delorie.com>2002-09-12 01:11:29 +0000
commit7070db67dcaf6649058ec75ade7d8c0834f7f58d (patch)
treeb209cd09a11bf145702849b41a826629ef529c0a /libiberty/splay-tree.c
parent2ae6fd159472837d2639ab0be7eefc23343c872d (diff)
downloadgdb-7070db67dcaf6649058ec75ade7d8c0834f7f58d.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/splay-tree.c')
-rw-r--r--libiberty/splay-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/splay-tree.c b/libiberty/splay-tree.c
index 7999447bc11..3227ed3d3a6 100644
--- a/libiberty/splay-tree.c
+++ b/libiberty/splay-tree.c
@@ -482,7 +482,7 @@ splay_tree_predecessor (sp, key)
}
/* Return the immediate successor KEY, or NULL if there is no
- predecessor. KEY need not be present in the tree. */
+ successor. KEY need not be present in the tree. */
splay_tree_node
splay_tree_successor (sp, key)
@@ -492,7 +492,7 @@ splay_tree_successor (sp, key)
int comparison;
splay_tree_node node;
- /* If the tree is empty, there is certainly no predecessor. */
+ /* If the tree is empty, there is certainly no successor. */
if (!sp->root)
return NULL;