diff options
author | Michael Adam <obnox@samba.org> | 2009-08-09 23:06:31 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-08-09 23:06:31 +0200 |
commit | 43fcc9ea3715e4de323eef9a0984a212899d4651 (patch) | |
tree | bb7da61d114bf2c0060e76f45e0a9408192cee3e | |
parent | 00fd84586c5baebe21c4b20b70ddc7d2624d215a (diff) | |
download | tinyproxy-43fcc9ea3715e4de323eef9a0984a212899d4651.tar.gz tinyproxy-43fcc9ea3715e4de323eef9a0984a212899d4651.zip |
Fix implicit cast warning in upstream_add().
Michael
-rw-r--r-- | src/reqs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -326,7 +326,7 @@ void upstream_add (const char *host, int port, const char *domain) { char *ptr; - struct upstream *up = safemalloc (sizeof (struct upstream)); + struct upstream *up = (struct upstream *)safemalloc(sizeof (struct upstream)); if (!up) { |