X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fnp.c;h=dd197f9c6d392c9eb13886f21471bcd3cd0b2ac3;hb=96994a54e60e9c95b8bba54c2281acf7059b1203;hp=598c05e84b22ce1536d0e98051031518158779e4;hpb=369c24f1d085a41ec274ebae5fc198fcee567653;p=pspp diff --git a/src/math/np.c b/src/math/np.c index 598c05e84b..dd197f9c6d 100644 --- a/src/math/np.c +++ b/src/math/np.c @@ -47,7 +47,7 @@ acc (struct statistic *s, const struct ccase *cx UNUSED, struct np *np = UP_CAST (s, struct np, parent.parent); double rank = np->prev_cc + (c + 1) / 2.0; - double ns = gsl_cdf_ugaussian_Pinv (rank / ( np->n + 1 )); + double ns = gsl_cdf_ugaussian_Pinv (rank / (np->n + 1)); double z = (y - np->mean) / np->stddev;