From 0386752abb77cc565271c9bb4db7f97bfe5118d7 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Wed, 16 Oct 2019 10:14:44 -0400 Subject: [PATCH] Removed an error message from DRCcif.c; otherwise it raises an error whenever there are no DRC-CIF rules in the techfile. The same error will be raised anyway when reading the techfile if DRC-CIF rules are declared without a style being specified. --- drc/DRCcif.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drc/DRCcif.c b/drc/DRCcif.c index fa4f00c7..9031ea4c 100644 --- a/drc/DRCcif.c +++ b/drc/DRCcif.c @@ -504,10 +504,7 @@ drcCifCheck(arg) if (CIFCurStyle != drcCifStyle) { - if (drcNeedStyle == NULL) { - TxError("Error: No DRC CIF style declared!\n"); - return; - } + if (drcNeedStyle == NULL) return; CIFSaveStyle = CIFCurStyle;