From fbe63ef306d371d66d99c21b818b47de10678072 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Wed, 10 Mar 2021 10:16:10 +0100 Subject: [PATCH] fix --- src/main/timesync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/timesync.c b/src/main/timesync.c index 8d3fd96..ee2ba84 100644 --- a/src/main/timesync.c +++ b/src/main/timesync.c @@ -15,7 +15,7 @@ void timesyncCallback(struct timeval *tv) { uint32_t current_seconds = timestamp.tv_sec; uint32_t current_milliseconds = timestamp.tv_nsec / 1e6; - ESP_LOGI(TAG, "time is synchronized now: %u s %u ms", current_secound, current_milliseconds); + ESP_LOGI(TAG, "time is synchronized now: %u s %u ms", current_seconds, current_milliseconds); synchronized = true; }