cameraview: fix spaces in debug print

old-commit-hash: c1fcd63bba
beeps
Shane Smiskol 3 years ago
parent 504453c3e4
commit 5587ce2220
  1. 2
      selfdrive/ui/qt/widgets/cameraview.cc

@ -358,7 +358,7 @@ void CameraWidget::vipcThread() {
while (!QThread::currentThread()->isInterruptionRequested()) { while (!QThread::currentThread()->isInterruptionRequested()) {
if (!vipc_client || cur_stream != requested_stream_type) { if (!vipc_client || cur_stream != requested_stream_type) {
clearFrames(); clearFrames();
qDebug() << "connecting to stream " << requested_stream_type << ", was connected to " << cur_stream; qDebug().nospace() << "connecting to stream " << requested_stream_type << ", was connected to " << cur_stream;
cur_stream = requested_stream_type; cur_stream = requested_stream_type;
vipc_client.reset(new VisionIpcClient(stream_name, cur_stream, false)); vipc_client.reset(new VisionIpcClient(stream_name, cur_stream, false));
} }

Loading…
Cancel
Save