From fd2a5afa946474ba0839de0e9da238dbaecbd6a5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 8 Feb 2016 20:47:10 -0800 Subject: [PATCH] pintos: Avoid literal control character in Perl variable name. Modern versions of Perl prefer a caret in variable names over literal control characters and issue a warning if the control character is used. This fixes the warning. --- src/utils/pintos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/pintos b/src/utils/pintos index 1564216..2ebe642 100755 --- a/src/utils/pintos +++ b/src/utils/pintos @@ -912,7 +912,7 @@ sub get_load_average { # Calls setitimer to set a timeout, then execs what was passed to us. sub exec_setitimer { if (defined $timeout) { - if ($ ge 5.8.0) { + if ($^V ge 5.8.0) { eval " use Time::HiRes qw(setitimer ITIMER_VIRTUAL); setitimer (ITIMER_VIRTUAL, $timeout, 0); -- 2.30.2