Squash strict-aliasing warning in the most disgusting way possible.

svn path=/trunk/netsurf/; revision=6070
This commit is contained in:
John Mark Bell 2009-01-15 16:00:16 +00:00
parent 3a56b67d95
commit f7f19ab0ed

View File

@ -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];