From a7ac2aa7e8e137e06ebde1514f19dbc480a702d4 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sat, 26 Aug 2023 11:09:33 -0400 Subject: [PATCH] use ->@* --- script.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.pl b/script.pl index 027e61f..03ab87e 100644 --- a/script.pl +++ b/script.pl @@ -66,7 +66,7 @@ sub generate_output_table ($ts) { if ( $days > 0 ) { my $perf = $ghz_days / $days; - push( @{ $list->{$machine} }, $perf ); + push $list->{$machine}->@*, $perf; } } }