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:
authorMarius Ungureanu <teromario@yahoo.com>2015-06-17 07:56:08 +0300
committerMarius Ungureanu <teromario@yahoo.com>2015-06-17 07:56:08 +0300
commit2a2297b85ecab0045d741933d6d97959622af796 (patch)
treefc3598106a78b18b1d35e37e8cc1405ddf7c806a /mcs/class/Mono.CompilerServices.SymbolWriter
parent55d8296440ee2c62b7f22dd7ad6e3836f09e5db4 (diff)
[mcs] Fix order of parameters for LineNumberEntry
Discovered by coverity in NRefactory.
Diffstat (limited to 'mcs/class/Mono.CompilerServices.SymbolWriter')
-rw-r--r--mcs/class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs b/mcs/class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
index 277f25a7f6f..4d142314b9e 100644
--- a/mcs/class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
+++ b/mcs/class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs
@@ -205,7 +205,7 @@ namespace Mono.CompilerServices.SymbolWriter
public static readonly LineNumberEntry Null = new LineNumberEntry (0, 0, 0, 0);
public LineNumberEntry (int file, int row, int column, int offset)
- : this (file, row, offset, column, false)
+ : this (file, row, column, offset, false)
{
}