Skip to content

Commit

Permalink
Explicit underlying type for CURLversion
Browse files Browse the repository at this point in the history
  • Loading branch information
hnaderi committed Feb 9, 2023
1 parent 5010b28 commit 332ce55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions curl/src/main/resources/scala-native/curl.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ unsigned int org_http4s_curl_get_version_num(curl_version_info_data *data){
}

CURLversion org_http4s_curl_version_now(){
// This is the minimum version we need currently
return CURLVERSION_FIRST;
}

Expand Down
2 changes: 1 addition & 1 deletion curl/src/main/scala/org/http4s/curl/unsafe/libcurl.scala
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private[curl] object libcurl {

type CURLoption = CUnsignedInt

type CURLversion
type CURLversion = CUnsignedInt

type curl_slist

Expand Down

0 comments on commit 332ce55

Please sign in to comment.