Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / math / categoricals.c
index 28d51a9dd704f5bc3a8937b496f05ac0e9cda94c..83326c3f006789814c4930feed8d85d15db95155 100644 (file)
@@ -323,7 +323,7 @@ struct categoricals *
 categoricals_create (struct interaction *const *inter, size_t n_inter,
                      const struct variable *wv, enum mv_class fctr_excl)
 {
-  struct categoricals *cat = xzalloc (sizeof *cat);
+  struct categoricals *cat = XZALLOC (struct categoricals);
   cat->iap = pool_calloc (cat->pool, n_inter, sizeof *cat->iap);
   cat->n_iap = n_inter;
   cat->wv = wv;