codeowners update
[mono.git] / mcs / ilasm / Report.cs
index dd2afd2ee27ff30c1a48c16f37c50334227f785e..c53763a6c8b6707684ae33849cb519a8dc07ed56 100644 (file)
@@ -16,7 +16,6 @@ namespace Mono.ILASM {
         public abstract class Report {
 
                 private static int error_count;
-                private static int mark_count;
                 private static bool quiet;
                 /* Current file being processed */
                 private static string file_path;
@@ -44,6 +43,8 @@ namespace Mono.ILASM {
                 public static void AssembleFile (string file, string listing,
                                           string target, string output)
                 {
+                        if (quiet)
+                                return;
                         Console.WriteLine ("Assembling '{0}' , {1}, to {2} --> '{3}'", file,
                                            GetListing (listing), target, output);
                         Console.WriteLine ();