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/Runtime.Base/src/System/Runtime/__Finalizer.cs')
-rw-r--r--src/Runtime.Base/src/System/Runtime/__Finalizer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Runtime.Base/src/System/Runtime/__Finalizer.cs b/src/Runtime.Base/src/System/Runtime/__Finalizer.cs
index 6fd7d7ea3..0dbc18de4 100644
--- a/src/Runtime.Base/src/System/Runtime/__Finalizer.cs
+++ b/src/Runtime.Base/src/System/Runtime/__Finalizer.cs
@@ -58,7 +58,7 @@ namespace System.Runtime
// Drain the queue of finalizable objects.
while (true)
{
- Object target = InternalCalls.RhpGetNextFinalizableObject();
+ object target = InternalCalls.RhpGetNextFinalizableObject();
if (target == null)
return;