diff options
author | Pierre Ossman <ossman@cendio.se> | 2020-05-19 19:49:41 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2020-05-21 11:34:22 +0200 |
commit | cf40b83e2330607bab221c33b8f7b5b1885eedb3 (patch) | |
tree | f2b8c66736f1f808def3272cce0a30ff843a36e1 /common/rdr/ZlibInStream.cxx | |
parent | 0cd533cf7f53daa157a9b7f6af2b9b72eeca5403 (diff) | |
download | tigervnc-cf40b83e2330607bab221c33b8f7b5b1885eedb3.tar.gz tigervnc-cf40b83e2330607bab221c33b8f7b5b1885eedb3.zip |
Remove unused bufSize argument from streams
Diffstat (limited to 'common/rdr/ZlibInStream.cxx')
-rw-r--r-- | common/rdr/ZlibInStream.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/rdr/ZlibInStream.cxx b/common/rdr/ZlibInStream.cxx index 2e4e080b..b9e772d5 100644 --- a/common/rdr/ZlibInStream.cxx +++ b/common/rdr/ZlibInStream.cxx @@ -24,9 +24,8 @@ using namespace rdr; -ZlibInStream::ZlibInStream(size_t bufSize_) - : BufferedInStream(bufSize_), - underlying(0), zs(NULL), bytesIn(0) +ZlibInStream::ZlibInStream() + : underlying(0), zs(NULL), bytesIn(0) { init(); } |