From 0bb266eab0ebedf374135c386b096782d552333e Mon Sep 17 00:00:00 2001 From: rlar Date: Sun, 16 Dec 2012 19:34:13 +0100 Subject: [PATCH] use enum dvec_flags values instead of numericals --- src/frontend/fourier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/fourier.c b/src/frontend/fourier.c index af55f5801..d07a7a07c 100644 --- a/src/frontend/fourier.c +++ b/src/frontend/fourier.c @@ -199,7 +199,7 @@ fourier(wordlist *wl, struct plot *current_plot) ZERO(n, struct dvec); n->v_name = copy(newvecname); n->v_type = SV_NOTYPE; - n->v_flags = (1 | VF_PERMANENT); + n->v_flags = (VF_REAL | VF_PERMANENT); n->v_length = 3 * nfreqs; n->v_numdims = 2; n->v_dims[0] = 3;