posix-xprintf-functions.patch from patch #6230.
[pspp-builds.git] / src / language / stats / t-test.q
index 79e5bf6167cb42aeef71137a7fadd98e6000bfe3..23237072c4651a24868e411fa60fb355b667b78d 100644 (file)
@@ -484,9 +484,9 @@ tts_custom_pairs (struct lexer *lexer, struct dataset *ds, struct cmd_t_test *cm
        {
          free (vars);
          msg (SE, _("PAIRED was specified but the number of variables "
-                    "preceding WITH (%d) did not match the number "
-                    "following (%d)."),
-              (int) n_before_WITH, (int) n_after_WITH );
+                    "preceding WITH (%zu) did not match the number "
+                    "following (%zu)."),
+               n_before_WITH, n_after_WITH);
          return 0;
        }
       n_pairs_local = n_before_WITH;