diff --git a/DateTimeMeter.c b/DateTimeMeter.c index c4ec0def8..f592bce70 100644 --- a/DateTimeMeter.c +++ b/DateTimeMeter.c @@ -26,7 +26,7 @@ static void DateTimeMeter_updateValues(Meter* this) { struct tm result; const struct tm* lt = localtime_r(&host->realtime.tv_sec, &result); - strftime(this->txtBuffer, sizeof(this->txtBuffer), "%F %H:%M:%S", lt); + strftime(this->txtBuffer, sizeof(this->txtBuffer), "%F %H:%M:%S %Z", lt); } const MeterClass DateTimeMeter_class = {