Browse Source

Fix bad indentation in CConn::socketEvent()

tags/v1.12.90
Pierre Ossman 2 years ago
parent
commit
c5d12f9a6c
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      vncviewer/CConn.cxx

+ 5
- 5
vncviewer/CConn.cxx View 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);

Loading…
Cancel
Save