From 605158b39169cdc63f179406da23b62284aa4565 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sat, 31 Oct 2015 16:20:52 -0700 Subject: [PATCH] replaced a 'say' with 'print' --- bin/feedgnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index b95ae77..c234ae3 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -384,7 +384,7 @@ sub interpretCommandline { if( $options{xlen} - int($options{xlen}) ) { - say STDERR "When streaming --xlen MUST be an integer. Rounding up to the nearest second"; + print STDERR "When streaming --xlen MUST be an integer. Rounding up to the nearest second\n"; $options{xlen} = 1 + int($options{xlen}); } }