diff --git a/libi2pd/Timestamp.h b/libi2pd/Timestamp.h index 082f4eaf..af79e078 100644 --- a/libi2pd/Timestamp.h +++ b/libi2pd/Timestamp.h @@ -22,7 +22,9 @@ namespace i2p template auto getTime(uint64_t offset) -> decltype(getTime()){ - bool Time_Correcting, Time_UseNTP; i2p::config::GetOption("time.correcting", Time_Correcting);i2p::config::GetOption("time.use_ntp", Time_UseNTP); + bool Time_Correcting, Time_UseNTP; + i2p::config::GetOption("time.correcting", Time_Correcting); + i2p::config::GetOption("time.use_ntp", Time_UseNTP); return (Time_Correcting || Time_UseNTP) ? getTime() + offset : getTime(); }