Make q2c link under mingw32, by eliminating the dependency on
[pspp-builds.git] / src / language / stats / t-test.q
index 53136abc5895220e1bb0ef13b2c7cd011062108e..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;
@@ -1785,7 +1785,8 @@ calculate(const struct ccase *first, const struct casefile *cf,
 
   struct cmd_t_test *cmd = (struct cmd_t_test *) cmd_;
 
-  struct casefilter *filter = casefilter_create (cmd->miss != TTS_INCLUDE, 
+  struct casefilter *filter = casefilter_create ((cmd->miss != TTS_INCLUDE
+                                                  ? MV_ANY : MV_SYSTEM), 
                                                 NULL, 0);
 
   if ( cmd->miss == TTS_LISTWISE )