X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fpor-file-writer.c;h=d9f16ef41e9d296768f0b319b56820df6861a12f;hb=a1fa03b1638263a959df0b2943478a0a4ca4b11a;hp=aa8b5e0bc0139152dba4ae97dc546c1930429ee1;hpb=888d0f91d57e0c3c5a4206c30ac71eb87bf44227;p=pspp diff --git a/src/data/por-file-writer.c b/src/data/por-file-writer.c index aa8b5e0bc0..d9f16ef41e 100644 --- a/src/data/por-file-writer.c +++ b/src/data/por-file-writer.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -19,7 +18,7 @@ #include #include "por-file-writer.h" -#include + #include #include #include @@ -30,18 +29,21 @@ #include #include #include -#include + #include "case.h" #include "dictionary.h" -#include #include "file-handle-def.h" +#include "format.h" +#include "missing-values.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 +136,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 +374,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 +408,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); } }