X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffile-type.c;h=5751fd40a280d81f14108d6154b30166e5438a30;hb=3417680e253b1bfc4519347ef06536378026be2a;hp=6a706eec5c2d5a01412d007773450796e858f459;hpb=119676ae19d4f862cab6261936d1f6223f5534cc;p=pspp diff --git a/src/file-type.c b/src/file-type.c index 6a706eec5c..5751fd40a2 100644 --- a/src/file-type.c +++ b/src/file-type.c @@ -33,6 +33,9 @@ #include "var.h" #include "vfm.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + /* Defines the three types of complex files read by FILE TYPE. */ enum { @@ -450,8 +453,8 @@ cmd_record_type (void) if (!lex_force_string ()) goto error; rct->v[rct->nv].c = xmalloc (fty->record.nc + 1); - st_bare_pad_copy (rct->v[rct->nv].c, ds_c_str (&tokstr), - fty->record.nc + 1); + buf_copy_str_rpad (rct->v[rct->nv].c, fty->record.nc + 1, + ds_c_str (&tokstr)); } else {