From: Jason Stover Date: Sun, 16 Apr 2006 02:11:24 +0000 (+0000) Subject: fixed variable type check X-Git-Tag: v0.6.0~989 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2417f6ed8121e775b6ca96821ce79e862958e20d;p=pspp-builds.git fixed variable type check --- diff --git a/src/math/linreg/coefficient.c b/src/math/linreg/coefficient.c index 2cca9f54..d1fcbfa2 100644 --- a/src/math/linreg/coefficient.c +++ b/src/math/linreg/coefficient.c @@ -164,7 +164,7 @@ pspp_linreg_coeff_get_value (struct pspp_linreg_coeff *c, { return NULL; } - if (v->type == NULL) + if (v->type == NUMERIC) { return NULL; }