From c4221889ed1af2a4892e3253ac5e027dac086f3b Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Tue, 5 Oct 2021 08:50:45 -0400 Subject: [PATCH] Correction to yesterday's commit (minor issue with line length in the SPICE netlist output of ext2spice). --- VERSION | 2 +- ext2spice/ext2spice.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 003fdb36..76b8cff1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.213 +8.3.214 diff --git a/ext2spice/ext2spice.c b/ext2spice/ext2spice.c index 533e6459..57e97c5b 100644 --- a/ext2spice/ext2spice.c +++ b/ext2spice/ext2spice.c @@ -1850,7 +1850,7 @@ topVisit(def, doStub) tchars = 1; } fprintf(esSpiceF, " %s", sorted_ports[portorder]); - tchars += strlen(pname) + 1; + tchars += strlen(sorted_ports[portorder]) + 1; freeMagic(sorted_ports[portorder]); }