summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-10-14 15:10:14 +0100
committerCarl Hetherington <cth@carlh.net>2018-10-14 15:10:14 +0100
commit3103251ddc540d65ee4a7c21837342d404f9596e (patch)
tree0386c4878807c904fc62f0a25dd4f18ecac8d4b4 /src/lib
parent5342750edfed5d569548a5592b519227fefdf0f4 (diff)
Typo in previous.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/internet.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/internet.cc b/src/lib/internet.cc
index 15a9ca72c..615ced789 100644
--- a/src/lib/internet.cc
+++ b/src/lib/internet.cc
@@ -122,7 +122,7 @@ get_from_zip_url (string url, string file, bool pasv, function<void (boost::file
zip_error_t error;
zip_t* zip = zip_open_from_source (zip_source, ZIP_RDONLY, &error);
if (!zip) {
- return String::compose (_("Could not open downloaded ZIP file (%1: 2)"), error.sys_err, error.str ? error.str : "");
+ return String::compose (_("Could not open downloaded ZIP file (%1: %2)"), error.sys_err, error.str ? error.str : "");
}
#else