From ae4545819389c81c8ece3e47a38124af88f9a980 Mon Sep 17 00:00:00 2001 From: fnky Date: Sun, 22 Feb 2026 19:31:09 +0100 Subject: [PATCH] Remove pointer from part arg --- vendor/curl/curl_urlapi.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/curl/curl_urlapi.odin b/vendor/curl/curl_urlapi.odin index c11f75c70..0b8171e34 100644 --- a/vendor/curl/curl_urlapi.odin +++ b/vendor/curl/curl_urlapi.odin @@ -130,7 +130,7 @@ foreign lib { * error code. The passed in string will be copied. Passing a NULL instead of * a part string, clears that part. */ - url_set :: proc(handle: ^CURLU, what: ^UPart, part: cstring, flags: UFlags) -> Ucode --- + url_set :: proc(handle: ^CURLU, what: UPart, part: cstring, flags: UFlags) -> Ucode --- /* * curl_url_strerror() turns a CURLUcode value into the equivalent human @@ -138,4 +138,4 @@ foreign lib { * messages. */ url_strerror :: proc(Ucode) -> cstring --- -} \ No newline at end of file +}