Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / math / tukey-hinges.c
index 3e9ea9374eb4198b76d83688234b23de97fc7cf9..aaf4881afa954e79e2a9b731188572072df1b558 100644 (file)
@@ -41,7 +41,7 @@ tukey_hinges_calculate (const struct tukey_hinges *th, double hinge[3])
 
       if (a_star[i] < 1)
        {
-         if (os->k[i].c_p1 >= 1 )
+         if (os->k[i].c_p1 >= 1)
            {
              hinge[i] = (1 - a_star[i]) * os->k[i].y
                + a_star[i] * os->k[i].y_p1;
@@ -74,16 +74,16 @@ struct tukey_hinges *
 tukey_hinges_create (double W, double c_min)
 {
   double d;
-  struct tukey_hinges *th = xzalloc (sizeof (*th));
+  struct tukey_hinges *th = XZALLOC (struct tukey_hinges);
   struct order_stats *os = &th->parent;
   struct statistic *stat = &os->parent;
 
   assert (c_min >= 0);
 
   os->n_k = 3;
-  os->k = xcalloc (sizeof (*os->k), 3);
+  os->k = xcalloc (3, sizeof (*os->k));
 
-  if ( c_min >= 1.0)
+  if (c_min >= 1.0)
     {
       d = floor ((W + 3) / 2.0) / 2.0;