Module: tools Branch: master Commit: 5de09acdbdcf2ac19d80e31e40a971fde04f7b08 URL: https://source.winehq.org/git/tools.git/?a=commit;h=5de09acdbdcf2ac19d80e31e...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Mar 31 16:06:10 2022 +0200
testbot: Remove an unneeded Fcntl import in VM::Run().
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/VMs.pm | 1 - 1 file changed, 1 deletion(-)
diff --git a/testbot/lib/WineTestBot/VMs.pm b/testbot/lib/WineTestBot/VMs.pm index f850daa..65f6333 100644 --- a/testbot/lib/WineTestBot/VMs.pm +++ b/testbot/lib/WineTestBot/VMs.pm @@ -446,7 +446,6 @@ sub Run($$$$$$) # So set ChildPid in the parent and synchronize with the child so it only # execs once this is done.
- use Fcntl; my ($fd_read, $fd_write); pipe($fd_read, $fd_write); # For synchronization