Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / math / tukey-hinges.c
index c483a508c56eff590d4b35e6ac58bf8fb8d4b558..aaf4881afa954e79e2a9b731188572072df1b558 100644 (file)
@@ -74,7 +74,7 @@ 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;