from size_t to int to match John's previous change to dict_get_vars().
+Sat Sep 17 11:13:13 2005 Ben Pfaff <blp@gnu.org>
+
+ * matrix-data.c: (cmd_matrix_data) Change type of variable whose
+ address is passed to dict_get_vars() from size_t to int to match
+ John's change below.
+
+ * modify-vars.c: (validate_var_modification) Ditto.
+
Mon Sep 12 19:26:06 WST 2005 John Darrington <john@darrington.wattle.id.au>
* dictionary.[ch] Changed cnt from size_t* to int* since that's
system file output. */
{
struct variable **v;
- size_t nv;
+ int nv;
dict_get_vars (default_dict, &v, &nv, 0);
qsort (v, nv, sizeof *v, compare_variables_by_mxd_var_type);
struct variable **all_vars;
struct variable **keep_vars;
struct variable **drop_vars;
- size_t all_cnt, keep_cnt, drop_cnt;
+ size_t keep_cnt, drop_cnt;
+ int all_cnt;
struct var_renaming *var_renaming;
int valid;