summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/io/ozlibstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/io/ozlibstream.h b/include/io/ozlibstream.h
index 0be792d482..d4ea8c2840 100644
--- a/include/io/ozlibstream.h
+++ b/include/io/ozlibstream.h
@@ -78,7 +78,7 @@ public:
* @param bufsize the size of the internal buffers
*/
explicit ozlibstream(std::ostream& output, int level = Z_DEFAULT_COMPRESSION, bool gzip = false, size_t bufsize = 32768):
- std::ostream(&buf), buf(output, level, bufsize, 15 + (gzip ? 16 : 0))
+ std::ostream(&buf), buf(output, bufsize, level, 15 + (gzip ? 16 : 0))
{}
///@return the wrapped ostream