]> andersk Git - splint.git/blobdiff - src/cttable.i
Fixed pre-processing bug reported by Adam Clarke. Moved marking point
[splint.git] / src / cttable.i
index 18a30ebfc07d17aaf0b823f8fadfcd9fe3a12a85..c75982a06b2a3af9e84bfca21e597100629ffc8c 100644 (file)
@@ -320,7 +320,7 @@ cttable_dump (FILE *fout)
   if (context_getFlag (FLG_SHOWSCAN) && cttab.size > 5000)
     {
       displayScanClose ();
-      displayScanOpen (message ("< Dumping type table (%d types) ", cttab.size));
+      displayScanOpen (message ("Dumping type table (%d types)", cttab.size));
       showdotstride = cttab.size / 5;
       showdots = TRUE;
     }
@@ -338,14 +338,15 @@ cttable_dump (FILE *fout)
       if (showdots && (i != 0 && ((i - 1) % showdotstride == 0)))
        {
          (void) fflush (g_warningstream);
-         fprintf (stderr, ".");
+         displayScanContinue (cstring_makeLiteralTemp ("."));
          (void) fflush (stderr);
        }
     }
 
   if (showdots)
     {
-      fprintf (stderr, " >\n< Continuing dump ");
+      displayScanClose ();
+      displayScanOpen (cstring_makeLiteral ("Continuing dump "));
     }
   
 }
This page took 0.062278 seconds and 4 git commands to generate.