summaryrefslogtreecommitdiffstats
path: root/DateTimeMeter.c
diff options
context:
space:
mode:
Diffstat (limited to 'DateTimeMeter.c')
-rw-r--r--DateTimeMeter.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/DateTimeMeter.c b/DateTimeMeter.c
index 3fb515b5..588b9fbe 100644
--- a/DateTimeMeter.c
+++ b/DateTimeMeter.c
@@ -20,9 +20,10 @@ static const int DateTimeMeter_attributes[] = {
};
static void DateTimeMeter_updateValues(Meter* this) {
- time_t t = time(NULL);
+ const ProcessList* pl = this->pl;
+
struct tm result;
- const struct tm* lt = localtime_r(&t, &result);
+ const struct tm* lt = localtime_r(&pl->realtime.tv_sec, &result);
int year = lt->tm_year + 1900;
if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) {
this->total = 366;