replay/camera: fix incorrect console output (#22491)

old-commit-hash: 537dff3ae0bac7ca3d40f1441297cc146dc1a9bb
This commit is contained in:
Dean Lee
2021-10-09 10:51:23 +08:00
committed by GitHub
parent 39811d083f
commit 3f5c7afba3
+1 -1
View File
@@ -16,7 +16,7 @@ CameraServer::~CameraServer() {
}
void CameraServer::startVipcServer() {
std::cout << (vipc_server_ ? "start" : "restart") << " vipc server" << std::endl;
std::cout << (vipc_server_ ? "restart" : "start") << " vipc server" << std::endl;
vipc_server_.reset(new VisionIpcServer("camerad"));
for (auto &cam : cameras_) {
if (cam.width > 0 && cam.height > 0) {