X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fsplit-file.c;h=d2b79c63dd6ce2a6c65cac7153ad468e52b6877f;hp=155cfa1208c23a035a2f9058eceb3c10de6d241d;hb=2cf38ce51a9f34961d68a75e0b312a591b5c9abf;hpb=71cc988f2ad781457fd5d43f284990825fcd9a8d diff --git a/src/language/dictionary/split-file.c b/src/language/dictionary/split-file.c index 155cfa12..d2b79c63 100644 --- a/src/language/dictionary/split-file.c +++ b/src/language/dictionary/split-file.c @@ -92,12 +92,12 @@ output_split_file_values (const struct dataset *ds, const struct ccase *c) const char *val_lab; const struct fmt_spec *print = var_get_print_format (v); - tab_text (t, 0, i + 1, TAB_LEFT | TAT_PRINTF, "%s", var_get_name (v)); + tab_text_format (t, 0, i + 1, TAB_LEFT, "%s", var_get_name (v)); data_out (case_data (c, v), print, temp_buf); temp_buf[print->w] = 0; - tab_text (t, 1, i + 1, TAT_PRINTF, "%.*s", print->w, temp_buf); + tab_text_format (t, 1, i + 1, 0, "%.*s", print->w, temp_buf); val_lab = var_lookup_value_label (v, case_data (c, v)); if (val_lab)