diff options
Diffstat (limited to 'libs/libcurl/src/splay.c')
-rw-r--r-- | libs/libcurl/src/splay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libcurl/src/splay.c b/libs/libcurl/src/splay.c index e5031a70ef..4cd049e51d 100644 --- a/libs/libcurl/src/splay.c +++ b/libs/libcurl/src/splay.c @@ -24,7 +24,7 @@ #include "curl_setup.h"
-#include "timeval.h"
+#include "curlx/timeval.h"
#include "splay.h"
/*
@@ -34,7 +34,7 @@ * zero : when i is equal to j
* positive when : when i is larger than j
*/
-#define compare(i,j) Curl_timediff_us(i,j)
+#define compare(i,j) curlx_timediff_us(i,j)
/*
* Splay using the key i (which may or may not be in the tree.) The starting
|