From 55310bd5c485a7db7a4cbcf55fe71cfd0135497a Mon Sep 17 00:00:00 2001 From: Quentin Garnier Date: Tue, 23 Dec 2014 14:18:25 +0100 Subject: [PATCH] Minor typo fix --- centreon/plugins/perfdata.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centreon/plugins/perfdata.pm b/centreon/plugins/perfdata.pm index 3e15758a8..4d62ad576 100644 --- a/centreon/plugins/perfdata.pm +++ b/centreon/plugins/perfdata.pm @@ -92,7 +92,7 @@ sub threshold_validate { # $options{value} : threshold value my $status = 1; - $self->{threshold_label}->{$options{label}} = {'value' => $options{value}, 'start' => undef, 'end' => undef, 'arobase' => undef, infinite_neg => undef, intinite_pos => undef}; + $self->{threshold_label}->{$options{label}} = {value => $options{value}, start => undef, end => undef, arobase => undef, infinite_neg => undef, infinite_pos => undef}; if (!defined($options{value}) || $options{value} eq '') { return $status; }