Skip to content

Commit

Permalink
we may not have found a match ❓
Browse files Browse the repository at this point in the history
  • Loading branch information
chicks-net committed Mar 16, 2016
1 parent 0ca893d commit 049d0a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions megamap
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ foreach my $line (@megalines) {
## print Dumper(\%slot_map);

foreach my $slot ( sort { $a <=> $b } keys %slot_map ) {
my $dev = $slot_map{$slot}->{dev};
my $linux = $slot_map{$slot}->{linux};
print "$slot\t$dev\t$linux\n";
my $dev = $slot_map{$slot}->{dev};
my $linux_drive = $slot_map{$slot}->{linux} || '???';
print "$slot\t$dev\t$linux_drive\n";
}

0 comments on commit 049d0a0

Please sign in to comment.