aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2022-04-06 15:47:49 +0200
committerPierre Ossman <ossman@cendio.se>2022-04-06 15:47:49 +0200
commitc5d12f9a6c8dd4753e49f62ca825e03d647c7038 (patch)
tree784928fe4ad1d27d2a967f34663bfab3c623fa38 /vncviewer
parentcaa976c4e6e7737aba08e9daf878cd51d581f42c (diff)
downloadtigervnc-c5d12f9a6c8dd4753e49f62ca825e03d647c7038.tar.gz
tigervnc-c5d12f9a6c8dd4753e49f62ca825e03d647c7038.zip
Fix bad indentation in CConn::socketEvent()
Diffstat (limited to 'vncviewer')
-rw-r--r--vncviewer/CConn.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vncviewer/CConn.cxx b/vncviewer/CConn.cxx
index 011dd971..0b90196f 100644
--- a/vncviewer/CConn.cxx
+++ b/vncviewer/CConn.cxx
@@ -255,12 +255,12 @@ void CConn::socketEvent(FL_SOCKET fd, void *data)
// Make sure that the FLTK handling and the timers gets some CPU
// time in case of back to back messages
- Fl::check();
- Timer::checkTimeouts();
+ Fl::check();
+ Timer::checkTimeouts();
- // Also check if we need to stop reading and terminate
- if (should_disconnect())
- break;
+ // Also check if we need to stop reading and terminate
+ if (should_disconnect())
+ break;
}
cc->sock->outStream().cork(false);