Skip to content

Commit 4f60a4e

Browse files
authored
fix formatting
1 parent 353945d commit 4f60a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Datapoint/ConversionHelpers.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ std::size_t decodeSchedule(const uint8_t* data, std::size_t len, char* output, s
9494
hour = 0;
9595
minutes = 0;
9696
}
97-
int result = snprintf(&output[pos], maxLen - pos, "%u.02:%u.02", hour, minutes);
97+
int result = snprintf(&output[pos], maxLen - pos, "%ou.2:%u.2", hour, minutes);
9898
if (result < 0) return 0;
9999
pos += result;
100100
if (i < 7) {

0 commit comments

Comments
 (0)