diff options
-rw-r--r-- | src/wakeup-timer-uha.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wakeup-timer-uha.cpp b/src/wakeup-timer-uha.cpp index b634f52..0db9fb0 100644 --- a/src/wakeup-timer-uha.cpp +++ b/src/wakeup-timer-uha.cpp @@ -89,8 +89,8 @@ private: void set_wakeup_time_to_the_distant_future() { - const auto next_year = m_clock->localtime().add_full(1,0,0,0,0,0); - set_wakeup_time(next_year); + const auto tomorrow = m_clock->localtime().add_full(0,0,1,0,0,0); + set_wakeup_time(tomorrow); } static gboolean kick_idle (gpointer gself) |