Skip to content

Commit f2be81e

Browse files
authored
Fix function name casing in SetTime call
1 parent 7e52d6f commit f2be81e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ int main() {
357357
dateTimeController.SetCurrentTime(NoInit_BackUpTime);
358358
} else {
359359
// __DATE__ is a string of the format "MMM DD YYYY", so an offset of 7 gives the start of the year
360-
dateTimeController.SetTime(Pinetime::Utility::compileTimeAtoi(&__DATE__[7]), 1, 1, 0, 0, 0);
360+
dateTimeController.SetTime(Pinetime::Utility::CompileTimeAtoi(&__DATE__[7]), 1, 1, 0, 0, 0);
361361

362362
// Clear Memory to known state
363363
memset(&__start_noinit_data, 0, (uintptr_t) &__stop_noinit_data - (uintptr_t) &__start_noinit_data);

0 commit comments

Comments
 (0)