Skip to content

Commit

Permalink
Change DateTime.UtcNow.Kind from Local to Utc.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinA-MSFT committed Jul 8, 2015
1 parent 95863a9 commit 45584a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CLR/Libraries/CorLib/corlib_native_System_DateTime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ HRESULT Library_corlib_native_System_DateTime::get_UtcNow___STATIC__SystemDateTi

CLR_INT64* pRes = NewObject( stack );

*pRes = Time_GetUtcTime();
*pRes = Time_GetUtcTime() | s_UTCMask;

TINYCLR_NOCLEANUP_NOLABEL();
}
Expand Down

0 comments on commit 45584a4

Please sign in to comment.