summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-29 23:44:15 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-29 23:44:15 +0200
commit9829447534ecd0435a5d1bf621bf35da00c8e82a (patch)
treef6cdd33212d91673d3d95b0f6bc6c0a9e91d01c2
parent8693f8994053c6240e15ae87603ab26eff8a667f (diff)
downloadcurl-bagder/pingpong-timediff.tar.gz
fixup error: conversion from 'timediff_t' to 'time_t'bagder/pingpong-timediff
-rw-r--r--lib/asyn-thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asyn-thread.c b/lib/asyn-thread.c
index 281ae36b5..3ab253d8c 100644
--- a/lib/asyn-thread.c
+++ b/lib/asyn-thread.c
@@ -179,7 +179,7 @@ struct thread_sync_data {
struct thread_data {
curl_thread_t thread_hnd;
unsigned int poll_interval;
- time_t interval_end;
+ timediff_t interval_end;
struct thread_sync_data tsd;
};