lib/zlib/GzipOutputStream: rename Flush() to Finish()

This commit is contained in:
Max Kellermann
2022-07-04 10:04:23 +02:00
parent 5b3abe2c9c
commit 171b31ae67
4 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ CopyGzip(OutputStream &_dest, int src)
{
GzipOutputStream dest(_dest);
Copy(dest, src);
dest.Flush();
dest.Finish();
}
static void