mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-27 12:49:32 +03:00
Squash strict-aliasing warning in the most disgusting way possible.
svn path=/trunk/netsurf/; revision=6070
This commit is contained in:
parent
3a56b67d95
commit
f7f19ab0ed
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user