1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Fixing spelling mistakes. Patch from josch, fixes #1759

This commit is contained in:
Ivan Savenko
2014-03-23 12:59:03 +00:00
parent 9dda194ed3
commit 9c0df68cb8
39 changed files with 69 additions and 69 deletions

View File

@@ -127,7 +127,7 @@ static bool extractCurrent(unzFile file, std::ostream & where)
if (readSize == 0) // end-of-file. Also performs CRC check
return unzCloseCurrentFile(file) == UNZ_OK;
if (readSize > 0) // successfull read
if (readSize > 0) // successful read
{
where.write(buffer.data(), readSize);
if (!where.good())