summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-01-13 12:59:29 +0100
committerClifford Wolf <clifford@clifford.at>2015-01-13 12:59:29 +0100
commitdfa42e272cd13a08314299817423052488eb58ab (patch)
tree4560c10675ac9934833d5dd59ea4b46ded320567
parentdd699e03c111d11c7780863773993df34fee1726 (diff)
Tiny fix in vcdcd.pl
-rwxr-xr-xtests/tools/vcdcd.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tools/vcdcd.pl b/tests/tools/vcdcd.pl
index 2abfb7a2..6f497e99 100755
--- a/tests/tools/vcdcd.pl
+++ b/tests/tools/vcdcd.pl
@@ -80,8 +80,8 @@ for my $net (sort keys %gold_signals_hash) {
for my $fullname (keys $gate_signals_hash{$net}) {
$orig_net_names{$fullname} = 1;
}
- for my $_ (sort keys %orig_net_names) {
- push @signals, $_;
+ for my $net (sort keys %orig_net_names) {
+ push @signals, $net;
print " $1" if /(\[([0-9]+|[0-9]+:[0-9]+)\])$/;
}
print "\n";