From c752e8780b043c8822be2417cc5596b8f2ad9c0b Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 1 Jul 2025 00:45:50 +0200 Subject: Update codebase to use (const) void* and size_t where applicable --- src/download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/download.c') diff --git a/src/download.c b/src/download.c index 2f3a836..0b6b076 100644 --- a/src/download.c +++ b/src/download.c @@ -43,7 +43,7 @@ static size_t download_write_buffer_callback(char* data, size_t size, size_t nme return total; } -int download_to_buffer(const char* url, char** buf, uint32_t* length) +int download_to_buffer(const char* url, void** buf, size_t* length) { int res = 0; CURL* handle = curl_easy_init(); -- cgit v1.1-32-gdbae