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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-03-15 19:21:03 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-03-16 15:02:09 +0300
commit7ad842c95ccb59a1406b21f649b80430c0d83a42 (patch)
tree1800437d39722f55b0b5c22819d092570a67370f /mcs/class/System/System.Diagnostics
parent4a1c47f4bd5fb8859cac344def813f9aa64f0724 (diff)
[bcl] Rename variables to avoid conflict with later renames
Diffstat (limited to 'mcs/class/System/System.Diagnostics')
-rw-r--r--mcs/class/System/System.Diagnostics/EventLogEntryCollection.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System/System.Diagnostics/EventLogEntryCollection.cs b/mcs/class/System/System.Diagnostics/EventLogEntryCollection.cs
index c79752dffe7..e083485d7bf 100644
--- a/mcs/class/System/System.Diagnostics/EventLogEntryCollection.cs
+++ b/mcs/class/System/System.Diagnostics/EventLogEntryCollection.cs
@@ -62,8 +62,8 @@ namespace System.Diagnostics {
public void CopyTo (EventLogEntry[] eventLogEntries, int index)
{
- EventLogEntry[] entries = _impl.GetEntries ();
- Array.Copy (entries, 0, eventLogEntries, index, entries.Length);
+ EventLogEntry[] evLogEntries = _impl.GetEntries ();
+ Array.Copy (evLogEntries, 0, eventLogEntries, index, evLogEntries.Length);
}
public IEnumerator GetEnumerator ()