]> source.dussan.org Git - tigervnc.git/commitdiff
Fix bad indentation in CConn::socketEvent()
authorPierre Ossman <ossman@cendio.se>
Wed, 6 Apr 2022 13:47:49 +0000 (15:47 +0200)
committerPierre Ossman <ossman@cendio.se>
Wed, 6 Apr 2022 13:47:49 +0000 (15:47 +0200)
vncviewer/CConn.cxx

index 011dd971acd28bdc6b0ad03e5546aa26f8e4944b..0b90196f19147f33849f4611a435d5354d0c655d 100644 (file)
@@ -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);