Changed debug print increment from 100 -> 10000.

This commit is contained in:
D. Mitch Bailey 2021-09-07 10:19:27 -07:00
parent a05ede99db
commit df1c4c5153
1 changed files with 1 additions and 1 deletions

View File

@ -6894,7 +6894,7 @@ int reorderpins(struct hashlist *p, int file)
for (ob = ptr->cell; ob != NULL; ) {
/* Catch badness */
if (ob->next && (ob->next->node > 99999)) {
if (ob->next->node % 100 == 0) { /* print once every 100 nodes over 100000 */
if (ob->next->node % 10000 == 0) { /* print once every 10000 nodes over 100000 */
Fprintf(stdout, "Bad node. Node count %d\n", ob->next->node);
}
}