From: Chris Lundquist Date: Thu, 28 Feb 2013 01:25:52 +0000 (-0800) Subject: [perl_openvz] fix missing semicolon from @jyotty X-Git-Tag: collectd-5.5.0~251^2 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=c4dcf1e6807efd75e9093ff10f9c5f8b6620f6d0;p=collectd.git [perl_openvz] fix missing semicolon from @jyotty --- diff --git a/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm b/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm index 54192f28..4c7c3fe4 100644 --- a/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm +++ b/bindings/perl/lib/Collectd/Plugins/OpenVZ.pm @@ -43,7 +43,7 @@ my $enable_users = 1; my @ignored_interfaces = ( "lo" ); sub interface_read { - my ($veid, $name) = @_ + my ($veid, $name) = @_; my @rx_fields = qw(if_octets if_packets if_errors drop fifo frame compressed multicast); my @tx_fields = qw(if_octets if_packets if_errors drop fifo frame compressed); my %v = _build_report_hash($name);