Simple change to "gds read" to print out a diagnostic message for

every 5000 uses read instead of 100;  this significantly cuts down
on the output.
This commit is contained in:
Tim Edwards 2021-07-30 15:40:39 -04:00
parent e553bbb7c3
commit 08461c9384
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ calmaParseStructure(filename)
{
if (SigInterruptPending)
goto done;
if (nsrefs > osrefs && (nsrefs % 100) == 0)
if (nsrefs > osrefs && (nsrefs % 5000) == 0)
TxPrintf(" %d uses\n", nsrefs);
osrefs = nsrefs;
calmaNonManhattan = 0;