Finish converting struct variable to an opaque type. In this
[pspp-builds.git] / src / language / data-io / print.c
index 374415b531fb860f662621a08604cb2d598445e8..cb3441937819f56c61e65bbf1d8e9e306c69ce02 100644 (file)
@@ -460,7 +460,7 @@ print_trns_proc (void *trns_, struct ccase *c, casenumber case_num UNUSED)
       ds_set_length (&trns->line, spec->first_column, ' ');
       if (spec->type == PRT_VAR)
         {
-          const union value *input = case_data (c, spec->var->fv);
+          const union value *input = case_data (c, spec->var);
           char *output = ds_put_uninit (&trns->line, spec->format.w);
           if (!spec->sysmis_as_spaces || input->f != SYSMIS)
             data_out (input, &spec->format, output);