From 0c24c3345174079a07101d89d35a9c7ac4d47a8e Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Thu, 19 Sep 2019 08:22:11 -0400 Subject: [PATCH] Corrected a bad error from a previous commit (5 days ago, for fixing the forward-referenced GDS cell problem) in which when writing cells from 3rd-party GDS, the structure names are written to GDS with the indicator flag in front, making the structure names and the referenced names different, so that the GDS file is no longer valid. This has been fixed. --- calma/CalmaWrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calma/CalmaWrite.c b/calma/CalmaWrite.c index 5a01d85b..8a8842f3 100644 --- a/calma/CalmaWrite.c +++ b/calma/CalmaWrite.c @@ -487,7 +487,7 @@ calmaDumpStructure(def, outf, calmaDefHash, filename) HashSetValue(he, (char *)newnameptr); } } - calmaOutStringRecord(CALMA_STRNAME, newnameptr, outf); + calmaOutStringRecord(CALMA_STRNAME, newnameptr + 1, outf); } freeMagic(strname);