pspp-cvs
[Top][All Lists]
Advanced

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

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


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/oneway.q
Date: Wed, 04 May 2005 01:28:28 -0400

Index: pspp/src/oneway.q
diff -u pspp/src/oneway.q:1.18 pspp/src/oneway.q:1.19
--- pspp/src/oneway.q:1.18      Tue May  3 11:26:05 2005
+++ pspp/src/oneway.q   Wed May  4 05:28:27 2005
@@ -423,7 +423,7 @@
 
       const char *s = var_to_string(vars[v]);
 
-      struct group_statistics **gs_array = hsh_sort(gp->group_hash);
+      struct group_statistics *const *gs_array = hsh_sort(gp->group_hash);
       int count = 0;
 
       tab_text (t, 0, row, TAB_LEFT | TAT_TITLE, s);
@@ -574,7 +574,7 @@
   int n_rows = 2 + cmd.sbc_contrast;
   union value *group_value;
   int count = 0 ;      
-  void **group_values ;
+  void *const *group_values ;
 
   struct tab_table *t;
 
@@ -699,7 +699,7 @@
          struct group_proc *grp_data = group_proc_get (vars[v]);
          struct hsh_table *group_hash = grp_data->group_hash;
 
-         void **group_stat_array;
+         void *const *group_stat_array;
 
          double T;
          double std_error_contrast ;




reply via email to

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