summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-10-01 15:40:16 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-10-01 15:40:16 +0000
commitaf6c81b042326cb63c29d804643c4f4e71f44d70 (patch)
tree0c0a6db476f9a99f06ada17798f1ea4a90784016 /content
parent87ba84abfecafd95fda7a23ba51e6e318edd08e3 (diff)
downloadnetsurf-af6c81b042326cb63c29d804643c4f4e71f44d70.tar.gz
netsurf-af6c81b042326cb63c29d804643c4f4e71f44d70.tar.bz2
Convert nsurl to string for log.
svn path=/trunk/netsurf/; revision=12916
Diffstat (limited to 'content')
-rw-r--r--content/fetchers/curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/fetchers/curl.c b/content/fetchers/curl.c
index c833655da..09f8403af 100644
--- a/content/fetchers/curl.c
+++ b/content/fetchers/curl.c
@@ -352,7 +352,7 @@ void * fetch_curl_setup(struct fetch *parent_fetch, nsurl *url,
goto failed;
}
- LOG(("fetch %p, url '%s'", fetch, url));
+ LOG(("fetch %p, url '%s'", fetch, nsurl_access(url)));
/* construct a new fetch structure */
fetch->curl_handle = 0;