Skip to content

Commit

Permalink
fix CURLMcode type typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed Sep 23, 2016
1 parent f195cc5 commit 7204b31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions curl-helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -4362,7 +4362,7 @@ CAMLprim value caml_curl_multi_timeout(value v_multi)
static void func_name(CURLM *handle, value option) \
{ \
CAMLparam1(option); \
CURLcode result = CURLM_OK; \
CURLMcode result = CURLM_OK; \
\
result = curl_multi_setopt(handle, curl_option, conv_val(option)); \
\
Expand All @@ -4386,7 +4386,7 @@ long pipeliningMap[] =
static void handle_multi_PIPELINING(CURLM* handle, value option)
{
CAMLparam1(option);
CURLcode result = CURLM_OK;
CURLMcode result = CURLM_OK;

long bits = convert_bit_list(pipeliningMap, sizeof(pipeliningMap) / sizeof(pipeliningMap[0]), option);

Expand Down

0 comments on commit 7204b31

Please sign in to comment.