Fix compiler warning.
[pspp-builds.git] / src / language / stats / regression.q
index e7ced45ccbb7424f0ccf01ce9acc36de6f67c037..86d102d7c7037166752a9570d2d547c09016180a 100644 (file)
@@ -217,9 +217,9 @@ reg_stats_coeff (pspp_linreg_cache * c)
   tab_float (t, 6, 1, 0, pval, 10, 2);
   for (j = 0; j < c->n_coeffs; j++)
     {
-      this_row = j + 2;
       struct string tstr;
       ds_init_empty (&tstr);
+      this_row = j + 2;
 
       v = pspp_coeff_get_var (c->coeff[j], 0);
       label = var_to_string (v);