diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-05-19 16:31:08 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-05-19 16:31:38 +0200 |
commit | 1579a97c480578dcd14691cd3e40f56fd508204e (patch) | |
tree | 4eac0cff9eda3e07e13377f647b0cd915cae2480 /tracker-easy/tracker-easy.cpp | |
parent | 48b80fb28b9e6e44267c9d1edb8a9968ff81fea5 (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.cpp | 2 |
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); } |