Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs b/src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs
index 403478d98..705f93e7a 100644
--- a/src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs
+++ b/src/System.Private.CoreLib/src/System/Threading/Timer.Unix.cs
@@ -32,7 +32,7 @@ namespace System.Threading
// Note: AutoResetEvent.WaitOne takes an Int32 value as a timeout.
// The TimerQueue code ensures that timer duration is not greater than max Int32 value
- Debug.Assert(actualDuration <= (uint)Int32.MaxValue);
+ Debug.Assert(actualDuration <= (uint)int.MaxValue);
s_nextTimerDuration = (int)actualDuration;
// If this is the first time the timer is set then we need to create a thread that