using 'or' instead of '||' in some error checking

This commit is contained in:
Dima Kogan 2011-01-29 19:44:33 -08:00
parent 6d8dfe578a
commit e5d4f1401b

View File

@ -324,7 +324,7 @@ sub mainThread
} }
else 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; autoflush PIPE 1;