summaryrefslogtreecommitdiff
path: root/methods/https.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2008-10-28 18:14:29 +0100
committerMichael Vogt <mvo@debian.org>2008-10-28 18:14:29 +0100
commit3c8cda8b05d6eeaef76c7ccc673fe378b0c74f37 (patch)
tree3b77f2863a7fb6042d159eef95f17cff4016cbdf /methods/https.cc
parentd210bd7f6a72a2b24a1402f51b39c61438482827 (diff)
fix various -Wall warnings
Diffstat (limited to 'methods/https.cc')
-rw-r--r--methods/https.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/https.cc b/methods/https.cc
index e53ba1a11..98dfeefa1 100644
--- a/methods/https.cc
+++ b/methods/https.cc
@@ -249,7 +249,7 @@ bool HttpsMethod::Fetch(FetchItem *Itm)
if(success != 0)
{
unlink(File->Name().c_str());
- _error->Error(curl_errorstr);
+ _error->Error("%s", curl_errorstr);
Fail();
return true;
}