]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix print_warning using print instead of say.
authorSadie Powell <sadie@witchery.services>
Sun, 28 Feb 2021 19:55:31 +0000 (19:55 +0000)
committerSadie Powell <sadie@witchery.services>
Sun, 28 Feb 2021 19:55:31 +0000 (19:55 +0000)
make/console.pm

index e6f8d48384d027a0e47e4c9eaa86e27f381b4212..023108820f0df35fcd5df413e47c6be43d291535 100644 (file)
@@ -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;
        }
 }