From 91bc396178bde0bdfa967772d5ce44a6961ab522 Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Tue, 30 Sep 2008 18:59:02 +0000
Subject: [PATCH] remove unnecessary typecast, otherwise triggering compiler
 warning: dereferencing type-punned pointer will break strict-aliasing rules

---
 src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c
index a85b16d6dd..e90cb36294 100644
--- a/src/main.c
+++ b/src/main.c
@@ -4500,7 +4500,7 @@ operate(struct Configurable *config, int argc, argv_item_t argv[])
           my_setopt(curl, CURLOPT_TCP_NODELAY, 1);
 
         /* where to store */
-        my_setopt(curl, CURLOPT_WRITEDATA, (FILE *)&outs);
+        my_setopt(curl, CURLOPT_WRITEDATA, &outs);
         /* what call to write */
         my_setopt(curl, CURLOPT_WRITEFUNCTION, my_fwrite);
 
-- 
GitLab