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/FdOutStream.cxx | |
parent | 0cd533cf7f53daa157a9b7f6af2b9b72eeca5403 (diff) | |
download | tigervnc-cf40b83e2330607bab221c33b8f7b5b1885eedb3.tar.gz tigervnc-cf40b83e2330607bab221c33b8f7b5b1885eedb3.zip |
Remove unused bufSize argument from streams
Diffstat (limited to 'common/rdr/FdOutStream.cxx')
-rw-r--r-- | common/rdr/FdOutStream.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/common/rdr/FdOutStream.cxx b/common/rdr/FdOutStream.cxx index 4fc74671..d7da7103 100644 --- a/common/rdr/FdOutStream.cxx +++ b/common/rdr/FdOutStream.cxx @@ -49,9 +49,8 @@ using namespace rdr; -FdOutStream::FdOutStream(int fd_, bool blocking_, int timeoutms_, size_t bufSize_) - : BufferedOutStream(bufSize_), - fd(fd_), blocking(blocking_), timeoutms(timeoutms_) +FdOutStream::FdOutStream(int fd_, bool blocking_, int timeoutms_) + : fd(fd_), blocking(blocking_), timeoutms(timeoutms_) { gettimeofday(&lastWrite, NULL); } |