[mcs] Fix order of parameters for LineNumberEntry
authorMarius Ungureanu <teromario@yahoo.com>
Wed, 17 Jun 2015 04:56:08 +0000 (07:56 +0300)
committerMarius Ungureanu <teromario@yahoo.com>
Wed, 17 Jun 2015 04:56:08 +0000 (07:56 +0300)
Discovered by coverity in NRefactory.

mcs/class/Mono.CompilerServices.SymbolWriter/MonoSymbolTable.cs

index 277f25a7f6fade9f356f88b0795e82941db80e57..4d142314b9efb96d53d59d4ab4b061ccf22d780d 100644 (file)
@@ -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)
                {
                }