shithub: mc

Download patch

ref: a54b19e53f7b942c3c59a8f687fb590ebfec3209
parent: 4546bb9cf7773e4647e83358ed71beaeb9a4c08c
author: Ori Bernstein <[email protected]>
date: Tue Jun 5 19:00:20 EDT 2012

Get rid of debugging prints.

    They're not needed now that I know what was going wrong.

--- a/8/simp.c
+++ b/8/simp.c
@@ -131,10 +131,8 @@
 
     globls = mkht(ptrhash, ptreq);
     /* We need to declare all variables before use */
-    printf("nn = %d\n", nn);
     for (i = 0; i < nn; i++) {
         if (n[i]->type == Ndecl) {
-            printf("declaring %ld => %s\n", n[i]->decl.sym->id, asmname(n[i]->decl.sym->name));
             htput(globls, (void*)n[i]->decl.sym->id, asmname(n[i]->decl.sym->name));
         }
     }