gnuplot.c, bug fix, allow gnuplot with MINGW

This commit is contained in:
h_vogt 2017-02-12 23:06:04 +01:00 committed by rlar
parent ccfcc056ad
commit e5d70d0821
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ ft_gnuplot(double *xlims, double *ylims, char *filename, char *title, char *xlab
}
/* Set up the file header. */
#if !defined(__MINGW__) && !defined(_MSC_VER)
#if !defined(__MINGW32__) && !defined(_MSC_VER)
fprintf(file, "set terminal X11 noenhanced\n");
#else
fprintf(file, "set termoption noenhanced\n");