fix bug #337: avoid warning with pvectl

This commit is contained in:
Dietmar Maurer 2013-02-22 06:11:54 +01:00
parent 1332d281f6
commit adf8c213cc
3 changed files with 9 additions and 3 deletions

View File

@ -43,8 +43,8 @@ my $cmddef = {
exit 0 if (!scalar(@$vmlist)); exit 0 if (!scalar(@$vmlist));
printf "%10s %-20s %-10s %-10s %-12s %-10s\n", printf "%10s %-20s %-10s %-10s %-12s\n",
qw(VMID NAME STATUS MEM(MB) DISK(GB)); qw(VMID NAME STATUS MEM(MB) DISK(GB));
foreach my $rec (sort { $a->{vmid} <=> $b->{vmid} } @$vmlist) { foreach my $rec (sort { $a->{vmid} <=> $b->{vmid} } @$vmlist) {
printf "%10s %-20s %-10s %-10s %-12.2f\n", $rec->{vmid}, $rec->{name} || '', printf "%10s %-20s %-10s %-10s %-12.2f\n", $rec->{vmid}, $rec->{name} || '',

View File

@ -1,3 +1,9 @@
pve-manager (2.3-9) unstable; urgency=low
* fix bug #337: avoid warning with pvectl
-- Proxmox Support Team <support@proxmox.com> Fri, 22 Feb 2013 06:11:38 +0100
pve-manager (2.3-8) unstable; urgency=low pve-manager (2.3-8) unstable; urgency=low
* Allow to set tablet option on the GUI * Allow to set tablet option on the GUI

View File

@ -2,7 +2,7 @@ RELEASE=2.3
VERSION=2.3 VERSION=2.3
PACKAGE=pve-manager PACKAGE=pve-manager
PACKAGERELEASE=8 PACKAGERELEASE=9
BINDIR=${DESTDIR}/usr/bin BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5 PERLLIBDIR=${DESTDIR}/usr/share/perl5