diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-04 07:47:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-04 07:47:11 +0000 |
commit | 9304055df518e5b9c85bd4559fcff12b09fed0f0 (patch) | |
tree | 05a790142b0ed38f31cc9c961cf3ea586f6e1347 /src | |
parent | 53e0c1b1a6f9cab14cbf767d4b6bd8e05616f0c7 (diff) | |
download | curl-9304055df518e5b9c85bd4559fcff12b09fed0f0.tar.gz |
'FILE *' changed to 'void *' in all callback functions
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index ed25e7c38..046fa1d19 100644 --- a/src/main.c +++ b/src/main.c @@ -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) { |