From 87501e57f1c166cb250111af54e0470ab8b2099c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 12 Sep 2017 09:29:01 +0200 Subject: code style: remove wrong uses of multiple spaces Closes #1878 --- lib/splay.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/splay.h') 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)))) -- cgit v1.2.3