Fix #77035.
[mono.git] / mcs / mcs / location.cs
index f48e2816eb9f3597b32dfc4e5d1901c6714bbcb8..f69ee3c69807df87490577a3f7cfa62a8af79e50 100644 (file)
@@ -119,9 +119,9 @@ namespace Mono.CSharp {
                                int id = (int) source_files [path];
                                string other_name = ((SourceFile) source_list [id - 1]).Name;
                                if (name.Equals (other_name))
-                                       Report.Warning (2002, "Source file `{0}' specified multiple times", name);
+                                       Report.Warning (2002, 1, "Source file `{0}' specified multiple times", other_name);
                                else
-                                       Report.Warning (2002, "Source filenames `{0}' and `{1}' both refer to the same file: {2}", name, other_name, path);
+                                       Report.Warning (2002, 1, "Source filenames `{0}' and `{1}' both refer to the same file: {2}", name, other_name, path);
                                return;
                        }