pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/examine.q


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/examine.q
Date: Sun, 23 Oct 2005 22:51:49 -0400

Index: pspp/src/examine.q
diff -u pspp/src/examine.q:1.29 pspp/src/examine.q:1.30
--- pspp/src/examine.q:1.29     Sun Aug  7 04:39:28 2005
+++ pspp/src/examine.q  Mon Oct 24 02:51:32 2005
@@ -77,7 +77,7 @@
 
 static struct variable **dependent_vars;
 
-static int n_dependent_vars;
+static size_t n_dependent_vars;
 
 
 struct factor 
@@ -328,7 +328,7 @@
 
       if ( cmd.sbc_plot) 
        {
-         int v;
+         size_t v;
 
          struct factor_statistics **fs = fctr->fs ;
 
@@ -611,7 +611,7 @@
 void
 factor_calc(struct ccase *c, int case_no, double weight, int case_missing)
 {
-  int v;
+  size_t v;
   struct factor *fctr = factors;
 
   while ( fctr) 
@@ -812,7 +812,7 @@
                hsh_probe(fctr->fstats, (void *) &key );
 
              if ( !*ffs ) {
-               int i;
+               size_t i;
                (*ffs) = create_factor_statistics (n_dependent_vars,
                                                   &key[0], &key[1]);
                for ( i = 0 ; i < n_dependent_vars ; ++i ) 
@@ -834,7 +834,7 @@
 
   if ( totals ) 
     {
-      int i;
+      size_t i;
       for ( i = 0 ; i < n_dependent_vars ; ++i ) 
        {
          metrics_destroy(&totals[i]);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]