mirror of
https://github.com/curl/curl.git
synced 2026-06-23 02:35:38 +03:00
externalsocket.c: fix compiler warning for fwrite return type
This commit is contained in:
parent
32e38b8f42
commit
e624714cad
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@
|
|||
|
||||
static size_t write_data(void *ptr, size_t size, size_t nmemb, void *stream)
|
||||
{
|
||||
int written = fwrite(ptr, size, nmemb, (FILE *)stream);
|
||||
size_t written = fwrite(ptr, size, nmemb, (FILE *)stream);
|
||||
return written;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue