Browse Source

use enum dvec_flags values instead of numericals

pre-master-46
rlar 13 years ago
parent
commit
0bb266eab0
  1. 2
      src/frontend/fourier.c

2
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;

Loading…
Cancel
Save