Corrected typo

This commit is contained in:
Ray
2022-05-07 18:04:34 +02:00
parent aa318674e8
commit df3f64bfd2
4 changed files with 9 additions and 9 deletions

View File

@@ -3189,7 +3189,7 @@ long GetFileModTime(const char *fileName)
return 0;
}
// Compress data (DEFLATE algorythm)
// Compress data (DEFLATE algorithm)
unsigned char *CompressData(const unsigned char *data, int dataSize, int *compDataSize)
{
#define COMPRESSION_QUALITY_DEFLATE 8
@@ -3209,7 +3209,7 @@ unsigned char *CompressData(const unsigned char *data, int dataSize, int *compDa
return compData;
}
// Decompress data (DEFLATE algorythm)
// Decompress data (DEFLATE algorithm)
unsigned char *DecompressData(const unsigned char *compData, int compDataSize, int *dataSize)
{
unsigned char *data = NULL;