aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Davidson <colrdavidson@gmail.com>2024-11-05 03:48:47 -0800
committerColin Davidson <colrdavidson@gmail.com>2024-11-05 03:48:47 -0800
commitb2d1fbba9cf6bfafc01a4d24af20bfdc79c2652d (patch)
treeddd0f91b9657bb2f63b5cc55994d5e486f7b6162
parentc9158b3220951ac22ba37a3cac15c198e94c3955 (diff)
oops, missed a comma
-rw-r--r--core/time/timezone/tz_windows.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/time/timezone/tz_windows.odin b/core/time/timezone/tz_windows.odin
index a86598d90..238c4c933 100644
--- a/core/time/timezone/tz_windows.odin
+++ b/core/time/timezone/tz_windows.odin
@@ -215,7 +215,7 @@ generate_rrule_from_tzi :: proc(tzi: ^REG_TZI_FORMAT, abbrevs: TZ_Abbrev, alloca
week = u8(tzi.std_date.day),
day = tzi.std_date.day_of_week,
time = (i64(tzi.std_date.hour) * 60 * 60) + (i64(tzi.std_date.minute) * 60) + i64(tzi.std_date.second),
- }
+ },
}, true
}