aboutsummaryrefslogtreecommitdiff
path: root/lib/splay.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-09-12 09:29:01 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-09-12 13:54:54 +0200
commit87501e57f1c166cb250111af54e0470ab8b2099c (patch)
tree5b9f92270e2d31938360675a4753ca0989bcb74a /lib/splay.h
parent59813726d1638880494e3675ae8230b6bdd21ee5 (diff)
code style: remove wrong uses of multiple spaces
Closes #1878
Diffstat (limited to 'lib/splay.h')
-rw-r--r--lib/splay.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/splay.h b/lib/splay.h
index 0273bad38..4612ec271 100644
--- a/lib/splay.h
+++ b/lib/splay.h
@@ -54,8 +54,8 @@ int Curl_splayremovebyaddr(struct Curl_tree *t,
struct Curl_tree *removenode,
struct Curl_tree **newroot);
-#define Curl_splaycomparekeys(i,j) ( ((i.tv_sec) < (j.tv_sec)) ? -1 : \
- ( ((i.tv_sec) > (j.tv_sec)) ? 1 : \
+#define Curl_splaycomparekeys(i,j) ( ((i.tv_sec) < (j.tv_sec)) ? -1 : \
+ ( ((i.tv_sec) > (j.tv_sec)) ? 1 : \
( ((i.tv_usec) < (j.tv_usec)) ? -1 : \
( ((i.tv_usec) > (j.tv_usec)) ? 1 : 0))))