Fix use of size_t in printf formats. Patch #5727.
[pspp-builds.git] / src / language / stats / npar.q
index 2f99b61468c2eae6e1adeef95815e10f8f019ffc..581452a286cd76bef9f08d29d1dc72ab6c05773d 100644 (file)
@@ -421,7 +421,7 @@ parse_two_sample_related_test (struct lexer *lexer,
          if ( n_vlist1 != n_vlist2) 
            msg (SE, _("PAIRED was specified but the number of variables "
                       "preceding WITH (%d) did not match the number "
-                      "following (%d)."), n_vlist1, n_vlist2);
+                      "following (%d)."), (int) n_vlist1, (int) n_vlist2);
 
          test_parameters->n_pairs = n_vlist1 ;
        }