pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] Changes to pspp/src/numeric.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/numeric.c
Date: Sun, 23 Oct 2005 22:52:09 -0400

Index: pspp/src/numeric.c
diff -u pspp/src/numeric.c:1.10 pspp/src/numeric.c:1.11
--- pspp/src/numeric.c:1.10     Sun Jul 31 21:42:46 2005
+++ pspp/src/numeric.c  Mon Oct 24 02:51:32 2005
@@ -36,11 +36,11 @@
 int
 cmd_numeric (void)
 {
-  int i;
+  size_t i;
 
   /* Names of variables to create. */
   char **v;
-  int nv;
+  size_t nv;
 
   /* Format spec for variables to create.  f.type==-1 if default is to
      be used. */
@@ -107,11 +107,11 @@
 int
 cmd_string (void)
 {
-  int i;
+  size_t i;
 
   /* Names of variables to create. */
   char **v;
-  int nv;
+  size_t nv;
 
   /* Format spec for variables to create. */
   struct fmt_spec f;
@@ -187,9 +187,9 @@
 cmd_leave (void)
 {
   struct variable **v;
-  int nv;
+  size_t nv;
 
-  int i;
+  size_t i;
 
   if (!parse_variables (default_dict, &v, &nv, PV_NONE))
     return CMD_FAILURE;




reply via email to

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