aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-04 07:47:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-04 07:47:11 +0000
commit9304055df518e5b9c85bd4559fcff12b09fed0f0 (patch)
tree05a790142b0ed38f31cc9c961cf3ea586f6e1347 /src
parent53e0c1b1a6f9cab14cbf767d4b6bd8e05616f0c7 (diff)
'FILE *' changed to 'void *' in all callback functions
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
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) {