Changeset 72144 in vbox for trunk/src/VBox
- Timestamp:
- May 7, 2018 3:02:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/time/time.cpp
r72141 r72144 547 547 : &g_aiDayOfYear[0]; 548 548 pTime->u8Month = 1; 549 while (pTime->u16YearDay > paiDayOfYear[pTime->u8Month] - 1)549 while (pTime->u16YearDay >= paiDayOfYear[pTime->u8Month]) 550 550 pTime->u8Month++; 551 551 Assert(pTime->u8Month >= 1 && pTime->u8Month <= 12);
Note:
See TracChangeset
for help on using the changeset viewer.