diff options
author | Michael Adam <obnox@samba.org> | 2009-08-09 23:05:28 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-09 23:05:28 +0200 |
commit | 00fd84586c5baebe21c4b20b70ddc7d2624d215a (patch) | |
tree | e98667417a94743ec150aa197d46be3f5e1c49fd | |
parent | ed23ceef64695717d99732f790bb5d075c9a3c7d (diff) | |
download | tinyproxy-00fd84586c5baebe21c4b20b70ddc7d2624d215a.tar.gz tinyproxy-00fd84586c5baebe21c4b20b70ddc7d2624d215a.zip |
Fix implicit cast warning in extract_ssl_url().
Michael
-rw-r--r-- | src/reqs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -296,7 +296,7 @@ ERROR_EXIT: static int extract_ssl_url (const char *url, struct request_s *request) { - request->host = safemalloc (strlen (url) + 1); + request->host = (char *)safemalloc (strlen (url) + 1); if (!request->host) return -1; |