diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 09:29:01 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 13:54:54 +0200 |
commit | 87501e57f1c166cb250111af54e0470ab8b2099c (patch) | |
tree | 5b9f92270e2d31938360675a4753ca0989bcb74a /lib/splay.h | |
parent | 59813726d1638880494e3675ae8230b6bdd21ee5 (diff) | |
download | curl-87501e57f1c166cb250111af54e0470ab8b2099c.tar.gz |
code style: remove wrong uses of multiple spaces
Closes #1878
Diffstat (limited to 'lib/splay.h')
-rw-r--r-- | lib/splay.h | 4 |
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)))) |