Fix use of size_t in printf formats. Patch #5727.
[pspp-builds.git] / src / language / stats / t-test.q
index 450a9aba197f5aba792ae271614f0c59b3ef0a43..088bc2b1c5cc82bc56239914278ad0417a06f234 100644 (file)
@@ -485,7 +485,7 @@ tts_custom_pairs (struct lexer *lexer, struct dataset *ds, struct cmd_t_test *cm
          msg (SE, _("PAIRED was specified but the number of variables "
                     "preceding WITH (%d) did not match the number "
                     "following (%d)."),
-              n_before_WITH, n_after_WITH );
+              (int) n_before_WITH, (int) n_after_WITH );
          return 0;
        }
       n_pairs_local = n_before_WITH;