From e5d4f1401b811129ff170c370473074d650801dd Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sat, 29 Jan 2011 19:44:33 -0800 Subject: [PATCH] using 'or' instead of '||' in some error checking --- bin/feedGnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedGnuplot b/bin/feedGnuplot index 10cab8b..98a0cc5 100755 --- a/bin/feedGnuplot +++ b/bin/feedGnuplot @@ -324,7 +324,7 @@ sub mainThread } else { - open PIPE, "|gnuplot $dopersist" || die "Can't initialize gnuplot\n"; + open PIPE, "|gnuplot $dopersist" or die "Can't initialize gnuplot\n"; } autoflush PIPE 1;