summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/tracker-easy.cpp
diff options
context:
space:
mode:
authorStéphane Lenclud <github@lenclud.com>2019-05-19 16:31:08 +0200
committerStéphane Lenclud <github@lenclud.com>2019-05-19 16:31:38 +0200
commit1579a97c480578dcd14691cd3e40f56fd508204e (patch)
tree4eac0cff9eda3e07e13377f647b0cd915cae2480 /tracker-easy/tracker-easy.cpp
parent48b80fb28b9e6e44267c9d1edb8a9968ff81fea5 (diff)
Easy Tracker: Fix #945 trivial warnings.
Also fixing broken build.
Diffstat (limited to 'tracker-easy/tracker-easy.cpp')
-rw-r--r--tracker-easy/tracker-easy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-easy/tracker-easy.cpp b/tracker-easy/tracker-easy.cpp
index 614eb55c..23e68397 100644
--- a/tracker-easy/tracker-easy.cpp
+++ b/tracker-easy/tracker-easy.cpp
@@ -353,7 +353,7 @@ namespace EasyTracker
// If we are ever going to support color buffer we will need another implementation.
if (iFrame.channels == 1)
{
- iPointExtractor.ExtractPoints(iMatFrame, (doPreview ? &iPreview.iFrameRgb : nullptr), iModel.size(), iPoints);
+ iPointExtractor.ExtractPoints(iMatFrame, (doPreview ? &iPreview.iFrameRgb : nullptr), (int)iModel.size(), iPoints);
}