From 3b478871dd59351a72ec25e1d52242269379d4b7 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 13 Apr 2009 18:41:31 +0000 Subject: [PATCH] newest gnuplot doesn't like the "set terminal png color" command, change to "set terminal png" --- scripts/perl/examples/logging.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/perl/examples/logging.pl b/scripts/perl/examples/logging.pl index 69d4f0806..1c56aacae 100755 --- a/scripts/perl/examples/logging.pl +++ b/scripts/perl/examples/logging.pl @@ -151,7 +151,7 @@ sub quick_plot_vs_time { # create the gnuplot command file open( CMD, ">$tmpcmd" ); - print CMD "set terminal png color\n"; + print CMD "set terminal png\n"; print "png_image = $png_image\n"; print CMD "set output \"$png_image\"\n"; print CMD "set xlabel \"Time (sec)\"\n"; -- 2.39.5