X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fmath%2Fnp.c;h=0d691c2aa7b6699a82cd174bedb77984e43a2ae0;hb=bcaaaebdde43e26a8d27c53590f34bf29eb56406;hp=dd197f9c6d392c9eb13886f21471bcd3cd0b2ac3;hpb=96994a54e60e9c95b8bba54c2281acf7059b1203;p=pspp diff --git a/src/math/np.c b/src/math/np.c index dd197f9c6d..0d691c2aa7 100644 --- a/src/math/np.c +++ b/src/math/np.c @@ -63,9 +63,9 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, minimize (&np->y_min, y); cp = case_create (casewriter_get_proto (np->writer)); - case_data_rw_idx (cp, NP_IDX_Y)->f = y; - case_data_rw_idx (cp, NP_IDX_NS)->f = ns; - case_data_rw_idx (cp, NP_IDX_DNS)->f = dns; + *case_num_rw_idx (cp, NP_IDX_Y) = y; + *case_num_rw_idx (cp, NP_IDX_NS) = ns; + *case_num_rw_idx (cp, NP_IDX_DNS) = dns; casewriter_write (np->writer, cp); np->prev_cc = cc; @@ -74,7 +74,7 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, struct np * np_create (double n, double mean, double var) { - struct np *np = xzalloc (sizeof (*np)); + struct np *np = XZALLOC (struct np); struct order_stats *os = &np->parent; struct statistic *stat = &os->parent; struct caseproto *proto;