Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / language / stats / factor.c
index 4feece0da0b813018f63a36a3eb947f7214b0723..8a5efac14b020d3c38645047224e82086664ea99 100644 (file)
@@ -250,7 +250,7 @@ struct idata
 static struct idata *
 idata_alloc (size_t n_vars)
 {
-  struct idata *id = xzalloc (sizeof (*id));
+  struct idata *id = XZALLOC (struct idata);
 
   id->n_extractions = 0;
   id->msr = gsl_vector_alloc (n_vars);