Skip to content

Commit

Permalink
Tweaked a log message
Browse files Browse the repository at this point in the history
For consistency with other log messages
  • Loading branch information
fdegros committed Aug 9, 2022
1 parent 0ce80a7 commit aa0aaa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit aa0aaa4

Please sign in to comment.