X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fpor-file-writer.c;h=0f5542ce42bd1703723573e88d563b0fbcef6a38;hb=338fb2a2e84df6427a2fdee6769421f57d5666d8;hp=aa8b5e0bc0139152dba4ae97dc546c1930429ee1;hpb=946282d65fa0142e38d10f78d2c699dacf95300e;p=pspp diff --git a/src/data/por-file-writer.c b/src/data/por-file-writer.c index aa8b5e0bc0..0f5542ce42 100644 --- a/src/data/por-file-writer.c +++ b/src/data/por-file-writer.c @@ -19,7 +19,7 @@ #include #include "por-file-writer.h" -#include + #include #include #include @@ -30,18 +30,22 @@ #include #include #include -#include + #include "case.h" #include "dictionary.h" -#include #include "file-handle-def.h" +#include "format.h" +#include "missing-values.h" +#include "stat-macros.h" +#include "value-labels.h" +#include "variable.h" + +#include #include #include +#include #include -#include "stat-macros.h" #include -#include "value-labels.h" -#include "variable.h" #include #include "gettext.h" @@ -134,7 +138,7 @@ pfm_open_writer (struct file_handle *fh, struct dictionary *dict, const struct variable *dv = dict_get_var (dict, i); struct pfm_var *pv = &w->vars[i]; pv->width = var_get_width (dv); - pv->fv = dv->fv; + pv->fv = var_get_case_index (dv); } w->digits = opts.digits; @@ -372,18 +376,19 @@ write_value_labels (struct pfm_writer *w, const struct dictionary *dict) { struct val_labs_iterator *j; struct variable *v = dict_get_var (dict, i); + const struct val_labs *val_labs = var_get_value_labels (v); struct val_lab *vl; - if (!val_labs_count (v->val_labs)) + if (val_labs == NULL) continue; buf_write (w, "D", 1); write_int (w, 1); write_string (w, var_get_short_name (v)); - write_int (w, val_labs_count (v->val_labs)); + write_int (w, val_labs_count (val_labs)); - for (vl = val_labs_first_sorted (v->val_labs, &j); vl != NULL; - vl = val_labs_next (v->val_labs, &j)) + for (vl = val_labs_first_sorted (val_labs, &j); vl != NULL; + vl = val_labs_next (val_labs, &j)) { write_value (w, &vl->value, v); write_string (w, vl->label); @@ -405,11 +410,11 @@ pfm_write_case (struct pfm_writer *w, const struct ccase *c) struct pfm_var *v = &w->vars[i]; if (v->width == 0) - write_float (w, case_num (c, v->fv)); + write_float (w, case_num_idx (c, v->fv)); else { write_int (w, v->width); - buf_write (w, case_str (c, v->fv), v->width); + buf_write (w, case_str_idx (c, v->fv), v->width); } }