diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-08-07 16:54:50 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-08-07 16:54:50 +0000 |
commit | 7ba5e098a356a1c2ae3a7d7cfc61c46811815693 (patch) | |
tree | df1de7fa7d9f25fefb67b5e9defd61fd6a59bebc /hiper | |
parent | 824b78021ca98af60fe7263a9b4927f548c6c43d (diff) | |
download | curl-7ba5e098a356a1c2ae3a7d7cfc61c46811815693.tar.gz |
Jeff Pohlmeyer pointed out this stupid variable type error
Diffstat (limited to 'hiper')
-rw-r--r-- | hiper/hipev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hiper/hipev.c b/hiper/hipev.c index 936dfeebb..c46e8abed 100644 --- a/hiper/hipev.c +++ b/hiper/hipev.c @@ -74,7 +74,7 @@ struct fdinfo { long timeout; /* as set by libcurl */ struct event ev; /* */ int evset; /* true if the 'ev' struct has been used in a event_set() call */ - CURLMcode *multi; /* pointer to the multi handle */ + CURLM *multi; /* pointer to the multi handle */ int *running_handles; /* pointer to the running_handles counter */ }; |