READ negative tests
[pspp] / src / language / stats / t-test-indep.c
index b4cb430f198250625a93c0f9334f3b0e07506ce4..3076ec03a0d3ef2b1384ee3a7fe6a77c0785bc22 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2011 Free Software Foundation, Inc.
+   Copyright (C) 2011, 2020 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -82,7 +82,7 @@ indep_run (struct tt *tt, const struct variable *gvar,
   struct ccase *c;
   struct casereader *r;
 
-  struct pair_stats *ps = xcalloc (tt->n_vars, sizeof *ps);
+  struct pair_stats *ps = XCALLOC (tt->n_vars,  struct pair_stats);
 
   int v;
 
@@ -269,6 +269,7 @@ indep_test (const struct tt *tt, const struct pair_stats *ps)
     N_("Mean Difference"), PIVOT_RC_OTHER,
     N_("Std. Error Difference"), PIVOT_RC_OTHER);
   pivot_category_create_group (
+    /* xgettext:no-c-format */
     group, N_("95% Confidence Interval of the Difference"),
     N_("Lower"), PIVOT_RC_OTHER,
     N_("Upper"), PIVOT_RC_OTHER);