Skip to content
Snippets Groups Projects
Commit 7ba5e098 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Jeff Pohlmeyer pointed out this stupid variable type error

parent 824b7802
Branches
Tags
No related merge requests found
...@@ -74,7 +74,7 @@ struct fdinfo { ...@@ -74,7 +74,7 @@ struct fdinfo {
long timeout; /* as set by libcurl */ long timeout; /* as set by libcurl */
struct event ev; /* */ struct event ev; /* */
int evset; /* true if the 'ev' struct has been used in a event_set() call */ 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 */ int *running_handles; /* pointer to the running_handles counter */
}; };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment