aboutsummaryrefslogtreecommitdiffstats
path: root/src/radix.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2011-10-14 19:06:02 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2011-10-14 19:06:02 +0300
commit4e9aeb3c4ffc69daff061c8b870f1a228bb78175 (patch)
treee56ce0518c621211504039d9b78bcae6d21554da /src/radix.c
parent9752a52355f237729a9536eccd930cb60a198695 (diff)
downloadrspamd-4e9aeb3c4ffc69daff061c8b870f1a228bb78175.tar.gz
rspamd-4e9aeb3c4ffc69daff061c8b870f1a228bb78175.zip
Remove some warnings.
Diffstat (limited to 'src/radix.c')
-rw-r--r--src/radix.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/radix.c b/src/radix.c
index e8a68848d..8bcd910bf 100644
--- a/src/radix.c
+++ b/src/radix.c
@@ -197,7 +197,6 @@ radix32tree_delete (radix_tree_t * tree, guint32 key, guint32 mask)
{
guint32 bit;
radix_node_t *node;
- radix_node_t *tmp;
bit = 0x80000000;
node = tree->root;
@@ -236,7 +235,6 @@ radix32tree_delete (radix_tree_t * tree, guint32 key, guint32 mask)
node->parent->left = NULL;
}
- tmp = node;
node = node->parent;
if (node->right || node->left) {