Corrected an obscure error in GDS generation caused by an
uninitialized variable, with the result that writing GDS would claim that it cannot scale down enough and that the output units are either wrong or the output style must have "units angstroms". Using angstrom units would solve the problem but did not treat the root of the problem.
This commit is contained in:
parent
1283317084
commit
aa738bb350
|
|
@ -2117,7 +2117,7 @@ CIFTechOutputScale(n, d)
|
|||
SquaresData *squares;
|
||||
SlotsData *slots;
|
||||
BloatData *bloats;
|
||||
bool has_odd_space;
|
||||
bool has_odd_space = FALSE;
|
||||
|
||||
if (ostyle == NULL) return;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue