From df1c4c5153a1460c34f3cacc4b3a98e824a2a92b Mon Sep 17 00:00:00 2001 From: "D. Mitch Bailey" Date: Tue, 7 Sep 2021 10:19:27 -0700 Subject: [PATCH] Changed debug print increment from 100 -> 10000. --- base/netcmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/netcmp.c b/base/netcmp.c index 789de13..aec25fd 100644 --- a/base/netcmp.c +++ b/base/netcmp.c @@ -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); } }