summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 55ef247f5..35f19ca0f 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -443,7 +443,7 @@ void fetch_abort(struct fetch *f)
do {
fetch->locked++;
fetch->callback(FETCH_ERROR, fetch->p,
- messages_get("FetchError"), 0);
+ (char*)messages_get("FetchError"), 0);
fetch->locked--;
next_fetch = fetch->queue_next;
fetch_free(fetch);
@@ -692,7 +692,7 @@ bool fetch_process_headers(struct fetch *f)
/* handle HTTP errors (non 2xx response codes) */
if (f->only_2xx && strncmp(f->url, "http", 4) == 0 &&
(http_code < 200 || 299 < http_code)) {
- f->callback(FETCH_ERROR, f->p, messages_get("Not2xx"), 0);
+ f->callback(FETCH_ERROR, f->p, (char*)messages_get("Not2xx"), 0);
f->locked--;
return true;
}
@@ -717,7 +717,7 @@ bool fetch_process_headers(struct fetch *f)
}
LOG(("FETCH_TYPE, '%s'", type));
- f->callback(FETCH_TYPE, f->p, type, f->content_length);
+ f->callback(FETCH_TYPE, f->p, (char*)type, f->content_length);
f->locked--;
if (f->aborting)
return true;