X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fmeans.c;h=0a3b413df721e7c8ef1f6114a358d1dcc523c885;hb=8f7af0acaf8a9253242d89fcdb26e285841f7833;hp=2235433fb92021600e4d380f2003135a6ab78053;hpb=7f0d18e1c856e42ef8fc910d785baace2900f7e6;p=pspp diff --git a/src/language/stats/means.c b/src/language/stats/means.c index 2235433fb9..0a3b413df7 100644 --- a/src/language/stats/means.c +++ b/src/language/stats/means.c @@ -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;