* splay-tree.c (splay_tree_insert): Add initialization to avoid

warning.
This commit is contained in:
Ian Lance Taylor 1999-07-11 19:13:51 +00:00
parent 56e82f2587
commit af32ff6969
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1999-07-11 Ian Lance Taylor <ian@zembu.com>
* splay-tree.c (splay_tree_insert): Add initialization to avoid
warning.
1999-05-11 Jim Blandy <jimb@zwingli.cygnus.com>
* cplus-dem.c (main): Use table lookup to distinguish identifier

View File

@ -1,5 +1,5 @@
/* A splay-tree datatype.
Copyright (C) 1998 Free Software Foundation, Inc.
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
Contributed by Mark Mitchell (mark@markmitchell.com).
This file is part of GNU CC.
@ -264,7 +264,7 @@ splay_tree_insert (sp, key, value)
splay_tree_key key;
splay_tree_value value;
{
int comparison;
int comparison = 0;
splay_tree_splay (sp, key);