mirror of
https://github.com/curl/curl.git
synced 2026-07-24 14:27:16 +03:00
'FILE *' changed to 'void *' in all callback functions
This commit is contained in:
parent
53e0c1b1a6
commit
9304055df5
6 changed files with 59 additions and 59 deletions
|
|
@ -1268,7 +1268,7 @@ struct OutStruct {
|
|||
struct Configurable *config;
|
||||
};
|
||||
|
||||
int my_fwrite(void *buffer, size_t size, size_t nmemb, FILE *stream)
|
||||
int my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream)
|
||||
{
|
||||
struct OutStruct *out=(struct OutStruct *)stream;
|
||||
if(out && !out->stream) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue