Skip to content

Commit

Permalink
Fix finding touchstone format line #392
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3xdh committed Dec 4, 2023
1 parent ef3d3a2 commit c23a0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qucs/extsimkernels/s2spice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ bool S2Spice::convertTouchstone(QTextStream *stream)
/* read and decode format line */

QString next_line;
while(!in_stream.readLineInto(&next_line)) {
while(in_stream.readLineInto(&next_line)) {
if (next_line.at(0) == '#') break;
}

Expand Down

0 comments on commit c23a0f2

Please sign in to comment.