Replace numerous instances of xzalloc with XZALLOC
[pspp] / src / language / stats / means.c
index 2235433fb92021600e4d380f2003135a6ab78053..0a3b413df721e7c8ef1f6114a358d1dcc523c885 100644 (file)
@@ -300,7 +300,7 @@ generate_cell (const struct means *means,
               const struct workspace *ws)
 {
   int n_vars = count_one_bits (not_wild);
-  struct cell *cell = xzalloc ((sizeof *cell));
+  struct cell *cell = XZALLOC (struct cell);
   cell->values = xcalloc (n_vars, sizeof *cell->values);
   cell->vars = xcalloc (n_vars, sizeof *cell->vars);
   cell->not_wild = not_wild;