removed uneccessary cast to pspp_linreg_cache
authorJason Stover <jhs@math.gcsu.edu>
Sat, 22 Apr 2006 13:50:40 +0000 (13:50 +0000)
committerJason Stover <jhs@math.gcsu.edu>
Sat, 22 Apr 2006 13:50:40 +0000 (13:50 +0000)
src/math/linreg/ChangeLog
src/math/linreg/predict.c

index 4743b08e2277eafbb4a931df51ace4f0698990d7..10c23462e26f88c89e990c8074517459dd24d608 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-22  Jason Stover  <jhs@debs.hjklfdsss.org>
+
+       * predict.c (pspp_linreg_residual): Removed unnecessary cast of c_
+       to pspp_linreg_cache.
+
 2006-04-18  Jason Stover  <jhs@math.gcsu.edu>
 
        * linreg.h: Added a pointer to a variable to store the resduals.
index 34e709c82782e039a4c2d6f19b218fda21c64f52..6ac7167c8d636583024430e62b5b97ab5bcc1a08 100644 (file)
@@ -87,9 +87,8 @@ double
 pspp_linreg_residual (const struct variable **predictors,
                      const union value **vals,
                      const union value *obs,
-                     const void *c_, int n_vals)
+                     const void *c, int n_vals)
 {
-  const pspp_linreg_cache *c = c_;
   double pred;
   double result;