value: Get rid of value_str(), value_str_rw(), value_num().
[pspp] / src / data / por-file-writer.c
index f5507522b7a81adf0684c13b0f242f58be0e37f0..5795b817dcf2b9cefafb42d342fe715ac96f1117 100644 (file)
@@ -316,7 +316,7 @@ write_value (struct pfm_writer *w, const union value *v, int width)
     {
       width = MIN (width, MAX_POR_WIDTH);
       write_int (w, width);
-      buf_write (w, value_str (v, width), width);
+      buf_write (w, v->s, width);
     }
 }