summaryrefslogtreecommitdiff
path: root/lib/splay.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/splay.c')
-rw-r--r--lib/splay.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/splay.c b/lib/splay.c
index 7aa2e4bac..ea943c70e 100644
--- a/lib/splay.c
+++ b/lib/splay.c
@@ -201,10 +201,8 @@ struct Curl_tree *Curl_splaygetbest(struct timeval i,
return x;
}
- else {
- *removed = NULL; /* no match */
- return t; /* It wasn't there */
- }
+ *removed = NULL; /* no match */
+ return t; /* It wasn't there */
}