CameraView: remove double semicolon (#26728)

remove double semicolon
pull/26732/head
Dean Lee 3 years ago committed by GitHub
parent d97336d532
commit 1c5c0e723c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      selfdrive/ui/qt/widgets/cameraview.cc

@ -359,7 +359,7 @@ void CameraWidget::vipcThread() {
if (!vipc_client || cur_stream != requested_stream_type) {
clearFrames();
qDebug() << "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));
}
active_stream_type = cur_stream;

Loading…
Cancel
Save