diff options
-rw-r--r-- | make/console.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/console.pm b/make/console.pm index e6f8d4838..023108820 100644 --- a/make/console.pm +++ b/make/console.pm @@ -79,7 +79,7 @@ sub print_error { sub print_warning { print STDERR console_format "<|YELLOW Warning:|> "; for my $line (@_) { - print STDERR console_format $line; + say STDERR console_format $line; } } |