Skip to content

Commit

Permalink
Add missing return value.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurschreiber committed Aug 3, 2010
1 parent 11b79db commit 87d54b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ext/typhoeus/typhoeus_multi.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static VALUE multi_add_handle(VALUE self, VALUE easy) {
if (mcode == CURLM_CALL_MULTI_PERFORM) {
curl_multi_perform(curl_multi->multi, &(curl_multi->running));
}
//
//
// if (curl_multi->running) {
// printf("call read_info on add<br/>");
// multi_read_info(self, curl_multi->multi);
Expand Down Expand Up @@ -128,6 +128,7 @@ static VALUE fire_and_forget(VALUE self) {
CurlMulti *curl_multi;
Data_Get_Struct(self, CurlMulti, curl_multi);
rb_curl_multi_run( self, curl_multi->multi, &(curl_multi->running) );
return Qnil;
}

static VALUE multi_perform(VALUE self) {
Expand Down

0 comments on commit 87d54b4

Please sign in to comment.