Fix styling

This commit is contained in:
santrancisco 2024-02-21 17:26:56 +11:00
parent f44376aaa3
commit be33d52016
No known key found for this signature in database
GPG Key ID: DE13EC3506E37B90

View File

@ -162,7 +162,7 @@ private:
archive_read_support_format_tar(archive);
archive_read_support_format_7zip(archive);
archive_read_support_format_zip(archive);
if (archive_read_open_filename(archive, path_to_archive.c_str(), 10240) != ARCHIVE_OK)
throw Exception(ErrorCodes::CANNOT_UNPACK_ARCHIVE, "Couldn't open archive {}: {}", quoteString(path_to_archive), archive_error_string(archive));
}