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.
This commit is contained in:
Tim Edwards 2019-09-19 08:22:11 -04:00
parent 4b5566af3e
commit 0c24c33451
1 changed files with 1 additions and 1 deletions

View File

@ -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);