Remove a false read when curr_line has

already been invalidated.
This commit is contained in:
Holger Vogt 2021-07-05 19:43:25 +02:00
parent 0f25c25c7e
commit ae72677cc2
1 changed files with 1 additions and 1 deletions

View File

@ -7477,7 +7477,7 @@ static void inp_meas_current(struct card *deck)
* line */ * line */
if (s && s > v) { if (s && s > v) {
/* %i( may be part of the node definition in a XSPICE instance, so skip it here */ /* %i( may be part of the node definition in a XSPICE instance, so skip it here */
if (*curr_line == 'a' && s[-1] == '%') { if (*v == 'a' && s[-1] == '%') {
s++; s++;
continue; continue;
} }