diff --git a/VERSION b/VERSION index 28d00753..50140e35 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.32 +0.1.33 diff --git a/libnostr_core.a b/libnostr_core.a index 063ce7c8..e871d369 100644 Binary files a/libnostr_core.a and b/libnostr_core.a differ diff --git a/nostr_core/core.c b/nostr_core/core.c index 3cf42b67..a1f88884 100644 --- a/nostr_core/core.c +++ b/nostr_core/core.c @@ -249,7 +249,8 @@ typedef struct { /** * Callback function for curl to write HTTP response data */ -static size_t nip05_write_callback(char* contents, size_t size, size_t nmemb, nip05_http_response_t* response) { +static size_t nip05_write_callback(void* contents, size_t size, size_t nmemb, void* userp) { + nip05_http_response_t* response = (nip05_http_response_t*)userp; size_t total_size = size * nmemb; // Check if we need to expand the buffer diff --git a/nostr_core/core.o b/nostr_core/core.o index ce29798e..2c6e7e9f 100644 Binary files a/nostr_core/core.o and b/nostr_core/core.o differ