From 9ea57fcc3016958cfacc0092a7b97449bbecaeea Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 8 Sep 1998 21:39:07 +0000 Subject: [PATCH 1/1] Fixes by Charlie Hotchkiss. --- Misc/zfstream.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Misc/zfstream.hxx b/Misc/zfstream.hxx index 4748090c..a5b02013 100644 --- a/Misc/zfstream.hxx +++ b/Misc/zfstream.hxx @@ -119,12 +119,12 @@ inline gzofstream &setcompressionstrategy( gzofstream &s, int l ) { inline gzomanip setcompressionlevel(int l) { - return gzomanip(&setcompressionlevel,l); + return gzomanip( /* & */ setcompressionlevel,l); // & superfluous } inline gzomanip setcompressionstrategy(int l) { - return gzomanip(&setcompressionstrategy,l); + return gzomanip( /* & */ setcompressionstrategy,l); // & superfluous } #endif // _zfstream_hxx -- 2.39.2