Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
fix more warnings..
Browse files Browse the repository at this point in the history
  • Loading branch information
mariux committed May 28, 2013
1 parent 258a2a8 commit 4ade260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mxmount
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ system("exportfs -ra");
sub add_data0_if_not_present {
my $allmp = $D{$hostname};

foreach my $mp (sort { $a->{mountpoint} <=> $b->{mountpoint} } @$allmp ) {
foreach my $mp (sort { $a->{mountpoint} cmp $b->{mountpoint} } @$allmp ) {
if ($mp->{label} eq "data0") {
return;
}
Expand Down

0 comments on commit 4ade260

Please sign in to comment.