summaryrefslogtreecommitdiff
path: root/usr.bin/systat/cache.c
diff options
context:
space:
mode:
authorCan Erkin Acar <canacar@cvs.openbsd.org>2008-12-07 02:56:07 +0000
committerCan Erkin Acar <canacar@cvs.openbsd.org>2008-12-07 02:56:07 +0000
commit1175b367c77957b9c14d4c9527b4f111b9c8d63d (patch)
treed368526d476ffcf502c42e94d16428fa9bef3dd9 /usr.bin/systat/cache.c
parent89ae31d1744f7a0a6124e4185e4f6859d09ef7ef (diff)
Warning cleanup including unused variables and shadowed names
Diffstat (limited to 'usr.bin/systat/cache.c')
-rw-r--r--usr.bin/systat/cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/cache.c b/usr.bin/systat/cache.c
index 38c931920af..f199919df75 100644
--- a/usr.bin/systat/cache.c
+++ b/usr.bin/systat/cache.c
@@ -1,4 +1,4 @@
-/* $Id: cache.c,v 1.2 2008/07/16 10:23:39 canacar Exp $ */
+/* $Id: cache.c,v 1.3 2008/12/07 02:56:06 canacar Exp $ */
/*
* Copyright (c) 2001, 2007 Can Erkin Acar <canacar@openbsd.org>
*
@@ -45,7 +45,7 @@ static __inline int sc_cmp(struct sc_ent *s1, struct sc_ent *s2);
/* initialize the tree and queue */
RB_HEAD(sc_tree, sc_ent) sctree;
TAILQ_HEAD(sc_queue, sc_ent) scq1, scq2, scq_free;
-RB_GENERATE(sc_tree, sc_ent, tlink, sc_cmp);
+RB_GENERATE(sc_tree, sc_ent, tlink, sc_cmp)
struct sc_queue *scq_act = NULL;
struct sc_queue *scq_exp = NULL;