5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-08 01:17:37 +03:00

fix #1388: cpuset: sort members numerically

(cherry picked from commit 1cffb285c5)
This commit is contained in:
Wolfgang Bumiller 2017-05-18 08:54:15 +02:00 committed by Fabian Grünbichler
parent 7c3d50790a
commit 96745ebcf1

View File

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