From aa0aaa46346274c694afd13f784e943bed601057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Degros?= Date: Wed, 10 Aug 2022 08:48:25 +1000 Subject: [PATCH] Tweaked a log message For consistency with other log messages --- lib/reader.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reader.cc b/lib/reader.cc index 174897a..f34ceac 100644 --- a/lib/reader.cc +++ b/lib/reader.cc @@ -40,7 +40,7 @@ static void LimitSize(ssize_t* const a, off_t b) { ZipFile UnbufferedReader::Open(zip_t* const zip, const zip_int64_t file_id) { ZipFile file(zip_fopen_index(zip, file_id, 0)); if (!file) - throw ZipError(StrCat("Cannot open File #", file_id), zip); + throw ZipError(StrCat("Cannot open File [", file_id, "]"), zip); return file; }