diff options
author | Pierre Ossman <ossman@cendio.se> | 2018-07-17 15:01:53 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2018-07-17 15:01:53 +0200 |
commit | ce261817682a9d3e842d497a1a0507fdda0f1b5f (patch) | |
tree | 5703e1a53c53ad52c53a23ec212c651e12e22cfc /common/rfb | |
parent | d2c91ceeb9346c347c40bf9feb5cae7e88c6cdc9 (diff) | |
download | tigervnc-ce261817682a9d3e842d497a1a0507fdda0f1b5f.tar.gz tigervnc-ce261817682a9d3e842d497a1a0507fdda0f1b5f.zip |
Fix bad type on congestion ETA variable
Diffstat (limited to 'common/rfb')
-rw-r--r-- | common/rfb/VNCSConnectionST.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/VNCSConnectionST.cxx b/common/rfb/VNCSConnectionST.cxx index 126fb4e8..f22b993a 100644 --- a/common/rfb/VNCSConnectionST.cxx +++ b/common/rfb/VNCSConnectionST.cxx @@ -883,7 +883,7 @@ void VNCSConnectionST::writeRTTPing() bool VNCSConnectionST::isCongested() { - unsigned eta; + int eta; congestionTimer.stop(); |