fix #1388: cpuset: sort members numerically

This commit is contained in:
Wolfgang Bumiller 2017-05-18 08:54:15 +02:00 committed by Fabian Grünbichler
parent 55c6e2cd32
commit 1cffb285c5

View File

@ -106,7 +106,7 @@ sub has {
sub members {
my ($self) = @_;
return sort keys %{$self->{members}};
return sort { $a <=> $b } keys %{$self->{members}};
}
sub size {