From 468dcd8f4d6ef39a57d617bb5814d668c039aecb Mon Sep 17 00:00:00 2001 From: rlar Date: Tue, 1 Oct 2013 21:50:02 +0200 Subject: [PATCH] avoid `enumerated type mixed with another type' compiler warning --- src/frontend/outitf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/outitf.c b/src/frontend/outitf.c index f3d494d7b..9f424e1d2 100644 --- a/src/frontend/outitf.c +++ b/src/frontend/outitf.c @@ -737,7 +737,7 @@ OUTattributes(runDesc *plotPtr, IFuid varName, int param, IFvalue *value) d->v_gridtype = type; } else if (param == PLOT_COMB) { for (d = run->runPlot->pl_dvecs; d; d = d->v_next) - d->v_plottype = param; + d->v_plottype = PLOT_COMB; } else { run->runPlot->pl_scale->v_gridtype = type; }