From f7f19ab0ed568e431566ff992bb916dd5554e0e6 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 15 Jan 2009 16:00:16 +0000 Subject: Squash strict-aliasing warning in the most disgusting way possible. svn path=/trunk/netsurf/; revision=6070 --- content/fetchers/fetch_curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/fetchers/fetch_curl.c') diff --git a/content/fetchers/fetch_curl.c b/content/fetchers/fetch_curl.c index 9cc27c8fb..30ba73403 100644 --- a/content/fetchers/fetch_curl.c +++ b/content/fetchers/fetch_curl.c @@ -762,7 +762,7 @@ void fetch_curl_done(CURL *curl_handle, CURLcode result) #endif bool abort; struct curl_fetch_info *f; - char **_hideous_hack = (char**)&f; + char **_hideous_hack = (char **) (void *) &f; CURLcode code; #ifdef WITH_SSL struct cert_info certs[MAX_CERTS]; -- cgit v1.2.3