Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing flat to fix signals test on Win32.
  • Loading branch information
jnthn committed Sep 4, 2015
1 parent 9622594 commit 0802eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Kernel.pm
Expand Up @@ -104,7 +104,7 @@ class Kernel does Systemic {
my @names;
if self.name eq 'win32' {
# These are the ones libuv emulates on Windows.
@names = "", <INT BREAK HUP WINCH>;
@names = flat "", <INT BREAK HUP WINCH>;
} else {
@names = flat "", qx/kill -l/.words;
@names.splice(1,1) if @names[1] eq "0"; # Ubuntu fudge
Expand Down

0 comments on commit 0802eec

Please sign in to comment.