compose sample
[mono.git] / mcs / mbas / report.cs
index 5a9501a6887f8a0dc591e9e81353b7836f5e9d6f..64d4863c4e73479394f8e75ac23165ccef7ba3cf 100644 (file)
@@ -14,7 +14,7 @@ using System.Text;
 using System.Collections;
 using System.Diagnostics;
 
-namespace Mono.CSharp {
+namespace Mono.MonoBASIC {
 
        /// <summary>
        ///   This class is used to report errors and warnings t te user.
@@ -119,13 +119,11 @@ namespace Mono.CSharp {
                        if (WarningsAreErrors)
                                Error (code, l, text);
                        else {
-                               string row;
-                               
                                if (Location.IsNull (l))
-                                       Console.WriteLine(String.Format("{0} warning BC{2:0000}: {3}",
+                                       Console.WriteLine(String.Format("{0} warning BC{1:0000}: {2}",
                                                l.Name, code, text));
                                else
-                                       Console.WriteLine(String.Format("{0}({1},{2}) warning BC{2:0000}: {3}",
+                                       Console.WriteLine(String.Format("{0}({1},{2}) warning BC{3:0000}: {4}",
                                                l.Name, l.Row, l.Col, code, text));
                                Warnings++;
                                Check (code);