summaryrefslogtreecommitdiff
path: root/src/components/heartrate/Ppg.cpp
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2021-02-14 14:42:42 +0100
committerJean-François Milants <jf@codingfield.com>2021-02-14 14:42:42 +0100
commitf81ff98c308e437139468301ed5198b322c2f4ec (patch)
tree4e2334bc3a8f7f434890a4cb439703b569572c10 /src/components/heartrate/Ppg.cpp
parent01e194426d51ffb1a6e9e3162567f29c2a84154d (diff)
parente62f8734befca5e40496f354aa05ea20602a8bbe (diff)
Merge branch 'develop' of github.com:JF002/Pinetime into develop
Diffstat (limited to 'src/components/heartrate/Ppg.cpp')
-rw-r--r--src/components/heartrate/Ppg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/heartrate/Ppg.cpp b/src/components/heartrate/Ppg.cpp
index 233c3003..e84cbdf3 100644
--- a/src/components/heartrate/Ppg.cpp
+++ b/src/components/heartrate/Ppg.cpp
@@ -13,7 +13,7 @@ using namespace Pinetime::Controllers;
namespace {
int Compare(int* d1, int* d2, size_t count) {
int e = 0;
- for(int i = 0; i < count; i++) {
+ for(size_t i = 0; i < count; i++) {
auto d = d1[i] - d2[i];
e += d * d;
}