CameraView: remove double semicolon (#26728)

remove double semicolon
old-commit-hash: 1c5c0e723cd3adc32c1cf398228d79601d2f25a2
This commit is contained in:
Dean Lee
2022-12-09 03:06:38 +08:00
committed by GitHub
parent 883be4410f
commit 1b9b62f934
+1 -1
View File
@@ -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;