Commit 4b4ebfe8 authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #337: avoid warning with pvectl

parent f9fa20dd
...@@ -43,8 +43,8 @@ my $cmddef = { ...@@ -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} || '',
......
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
......
...@@ -2,7 +2,7 @@ RELEASE=2.3 ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment