aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/time/time.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/time/time.tm b/lib/time/time.tm
index db0b9538..456b5f08 100644
--- a/lib/time/time.tm
+++ b/lib/time/time.tm
@@ -140,7 +140,7 @@ struct Time(tv_sec:Int64, tv_usec:Int64; extern)
@ret.minute = I(info.tm_min);
@ret.second = I(info.tm_sec);
@ret.nanosecond = I(@t.tv_usec);
- @ret.weekday.$tag = info.tm_wday + 1;
+ @ret.weekday = info.tm_wday + 1;
@ret.day_of_year = I(info.tm_yday);
@ret.timezone = @timezone;
}