aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index d57d0a5fa..4e7b14e3f 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -609,7 +609,7 @@ struct Progress {
curl_off_t downloaded; /* transfered so far */
curl_off_t uploaded; /* transfered so far */
- double current_speed; /* uses the currently fastest transfer */
+ curl_off_t current_speed; /* uses the currently fastest transfer */
bool callback; /* set when progress callback is used */
int width; /* screen width at download start */
@@ -617,8 +617,8 @@ struct Progress {
double timespent;
- double dlspeed;
- double ulspeed;
+ curl_off_t dlspeed;
+ curl_off_t ulspeed;
double t_nslookup;
double t_connect;