X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fautorecode.c;h=af9280b557c5669e4ec0033de09b8c17ca4c2e9d;hb=a9acce47d67e0ab35ce1690e4f1b1ac0121c2d78;hp=b075fb0b70d43bfdbdd0992b994281f788526ebf;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp diff --git a/src/language/stats/autorecode.c b/src/language/stats/autorecode.c index b075fb0b70..af9280b557 100644 --- a/src/language/stats/autorecode.c +++ b/src/language/stats/autorecode.c @@ -26,14 +26,14 @@ #include #include #include -#include #include #include #include -#include #include #include +#include "xalloc.h" + #include "gettext.h" #define _(msgid) gettext (msgid) @@ -133,9 +133,9 @@ cmd_autorecode (struct lexer *lexer, struct dataset *ds) { size_t i; - msg (SE, _("Source variable count (%u) does not match " - "target variable count (%u)."), - (unsigned) arc.var_cnt, (unsigned) dst_cnt); + msg (SE, _("Source variable count (%zu) does not match " + "target variable count (%zu)."), + arc.var_cnt, dst_cnt); for (i = 0; i < dst_cnt; i++) free (arc.dst_names[i]);