mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-04-17 11:30:50 +00:00
Fix typo in FileOps::extractFromZip()
Use the correct parameter in the exception message.
This commit is contained in:
parent
a056e631e4
commit
66a6afcb01
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ void FileOps::extractFromZip(const char* zipFilePath, const char* src, const cha
|
|||
std::ofstream outputFile(dest,std::ofstream::binary);
|
||||
if (!outputFile.good())
|
||||
{
|
||||
throw IOException("Unable to write to file " + std::string(src));
|
||||
throw IOException("Unable to write to file " + std::string(dest));
|
||||
}
|
||||
while (true)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue