kernel: fix comment typo in RtlTimeToTimeFields

This commit is contained in:
RadWolfie 2024-01-13 16:18:23 -06:00
parent d64e172c9f
commit b64a3b6faa
1 changed files with 1 additions and 1 deletions

View File

@ -1719,7 +1719,7 @@ XBSYSAPI EXPORTNUM(305) xbox::void_xt NTAPI xbox::RtlTimeToTimeFields
yearday = Days - (years * DAYSPERNORMALQUADRENNIUM) / 4;
months = (64 * yearday) / 1959;
/* the result is based on a year starting on March.
* To convert take 12 from Januari and Februari and
* To convert take 12 from January and February and
* increase the year by one. */
if (months < 14) {
TimeFields->Month = (USHORT)(months - 1);