summaryrefslogtreecommitdiff
path: root/src/network/core/tcp_http.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/core/tcp_http.h')
-rw-r--r--src/network/core/tcp_http.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/core/tcp_http.h b/src/network/core/tcp_http.h
index 1af7c31df..dc678cca0 100644
--- a/src/network/core/tcp_http.h
+++ b/src/network/core/tcp_http.h
@@ -105,13 +105,13 @@ public:
/** Free all our allocated data. */
~NetworkHTTPContentConnecter()
{
- free((void*)this->url);
+ free(this->url);
}
virtual void OnFailure()
{
this->callback->OnFailure();
- free((void*)this->data);
+ free(this->data);
}
virtual void OnConnect(SOCKET s)