From b200c275b061a0426a0143ce17173ae53c7f0805 Mon Sep 17 00:00:00 2001
From: Sebastian Hahta <joseha@utu.fi>
Date: Thu, 23 May 2019 09:00:05 +0300
Subject: [PATCH] Small fix

---
 components/rgbd-sources/src/calibrate.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/rgbd-sources/src/calibrate.cpp b/components/rgbd-sources/src/calibrate.cpp
index c5a96c862..04ed5bd1e 100644
--- a/components/rgbd-sources/src/calibrate.cpp
+++ b/components/rgbd-sources/src/calibrate.cpp
@@ -443,7 +443,7 @@ bool Calibrate::_recalibrate(vector<vector<Point2f>> *imagePoints,
 		found2 = !local_->isStereo() || findChessboardCornersSB(view[1],
 			settings_.boardSize, pointBuf[1], chessBoardFlags);
 #else
-		LOG(INFO) << "Using findChessboardCorners()"
+		LOG(INFO) << "Using findChessboardCorners()";
 		found1 = findChessboardCorners(view[0], settings_.boardSize,
 				pointBuf[0], chessBoardFlags);
 		found2 = !local_->isStereo() || findChessboardCorners(view[1],
-- 
GitLab