Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vcd/VCD.java
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ public void collectTimes()throws IOException
// One bit signals have no space between value and symbol
else if(parts.length == 1)
{
currentTimePoint.addPair(new SigVal(line.substring(1), line.substring(0,0)));
currentTimePoint.addPair(new SigVal(line.substring(1), line.substring(0,1)));
}
else if(parts.length == 2)
{
Expand Down