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

pull/22499/head
Dean Lee 2021-10-09 10:51:23 +08:00 committed by GitHub
parent 2f1ab63920
commit 537dff3ae0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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) {