minor fix

This commit is contained in:
Nikita Smith
2024-12-06 14:39:00 -08:00
parent b5273d6a00
commit f56bc209e0
+1 -1
View File
@@ -526,7 +526,7 @@ date_time_from_unix_time(U64 unix_time)
for(;;)
{
for(date.month = 0; date.month <= 12; ++date.month)
for(date.month = 0; date.month < 12; ++date.month)
{
U64 c = 0;
switch(date.month)