Fix printf format 76/260376/1
authorKwang Son <k.son@samsung.com>
Thu, 24 Jun 2021 05:23:56 +0000 (14:23 +0900)
committerKwang Son <k.son@samsung.com>
Thu, 24 Jun 2021 05:23:56 +0000 (14:23 +0900)
Change-Id: I010e68687d67482a05ecd77e1bff4a6b72e27c21
Signed-off-by: Kwang Son <k.son@samsung.com>
mv_machine_learning/mv_inference/inference/src/Inference.cpp

index 0ce6306..0a20d19 100755 (executable)
@@ -1263,7 +1263,7 @@ namespace inference
                        for (size_t idx = 0; idx < top_results.size(); ++idx) {
                                if (top_results[idx].first < mThreshold)
                                        continue;
-                               LOGI("idx:%lu", idx);
+                               LOGI("idx:%zu", idx);
                                LOGI("classIdx: %d", top_results[idx].second);
                                LOGI("classProb: %f", top_results[idx].first);