From 381fc0cca487e6bfdf31de968c486a83a575099f Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 2 Aug 2019 14:53:22 -0400 Subject: [PATCH] Removed diagnostic print from last commit. --- database/DBtimestmp.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/database/DBtimestmp.c b/database/DBtimestmp.c index f6900a70..d33b20fa 100644 --- a/database/DBtimestmp.c +++ b/database/DBtimestmp.c @@ -309,14 +309,11 @@ DBFlagMismatches(checkDef) CellDef *checkDef; { CellUse *parentUse; - long count; for (parentUse = checkDef->cd_parents; parentUse != NULL; parentUse = parentUse->cu_nextuse) { - count++; if (parentUse->cu_parent == NULL) continue; parentUse->cu_parent->cd_flags |= CDSTAMPSCHANGED; } - TxPrintf("Diagnostic: cell %s count = %ld\n", checkDef->cd_name, count); }