From e9fe96e5d2a9c3245aca5728ae62d54a1dea8ffa Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 13 Jan 2011 12:42:41 +0000 Subject: add missing parentheses in open calls --- lib/Iurt/Process.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Iurt/Process.pm') diff --git a/lib/Iurt/Process.pm b/lib/Iurt/Process.pm index 9855b36..fa8883b 100644 --- a/lib/Iurt/Process.pm +++ b/lib/Iurt/Process.pm @@ -44,7 +44,7 @@ sub check_pid { if (-f $pidfile) { my (@stat) = stat $pidfile; - open my $test_PID, $pidfile; + open(my $test_PID, $pidfile); my $pid = <$test_PID>; close $test_PID; -- cgit v1.2.1