From 4c99c559f3a1df27ea753cb5365b19dfa8165af2 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 29 Jun 2018 12:40:07 +0200 Subject: [PATCH] trivial: fixup: no double semicolons Signed-off-by: Thomas Lamprecht --- src/PVE/RESTEnvironment.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/RESTEnvironment.pm b/src/PVE/RESTEnvironment.pm index 6a53741..338a534 100644 --- a/src/PVE/RESTEnvironment.pm +++ b/src/PVE/RESTEnvironment.pm @@ -500,7 +500,7 @@ sub fork_worker { if ($sync && -t STDIN) { # some sync'ed workers operate on the tty but setsid sessions lose # the tty, so just create a new pgroup and give it the tty - POSIX::setpgid(0, 0) or die "failed to setpgid: $!\n";; + POSIX::setpgid(0, 0) or die "failed to setpgid: $!\n"; POSIX::tcsetpgrp(fileno(STDIN), $$) or die "failed to tcsetpgrp: $!\n"; } else { POSIX::setsid();