diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-05-05 20:50:24 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-05-05 20:50:24 +0000 |
commit | 9128a5038636399af323891c0ab2d3931f24e33f (patch) | |
tree | 3fc0e4c957ace777ca3dfafb53666fb429838a0c /gdb/dcache.c | |
parent | aa369b55ebb701c579d42962b1176fd3629c32fb (diff) | |
download | gdb-9128a5038636399af323891c0ab2d3931f24e33f.zip gdb-9128a5038636399af323891c0ab2d3931f24e33f.tar.gz gdb-9128a5038636399af323891c0ab2d3931f24e33f.tar.bz2 |
2010-05-05 Michael Snyder <msnyder@vmware.com>
* dcache.c (dcache_init): Delete unused variable.
(dcache_info): Delete unused variable.
Diffstat (limited to 'gdb/dcache.c')
-rw-r--r-- | gdb/dcache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/dcache.c b/gdb/dcache.c index e1386e0..40952d3 100644 --- a/gdb/dcache.c +++ b/gdb/dcache.c @@ -417,7 +417,6 @@ DCACHE * dcache_init (void) { DCACHE *dcache; - int i; dcache = (DCACHE *) xmalloc (sizeof (*dcache)); @@ -585,7 +584,7 @@ static void dcache_info (char *exp, int tty) { splay_tree_node n; - int i, refcount, lineno; + int i, refcount; if (exp) { |