Implemented the NPAR TESTS command.
[pspp-builds.git] / src / data / casefilter.c
index 9049c5173ed9a833daae7af6f6d8c1e14e2e7df2..267a695ac2bfeca4be9c6eae27cb99c0a2f5dcb4 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -98,7 +97,7 @@ casefilter_create (bool excl, struct variable **vars, int n_vars)
    filter considers. N_VARS is the size of VARS */
 void
 casefilter_add_variables (struct casefilter *filter,
-                          struct variable **vars, int n_vars)
+                         struct variable *const *vars, int n_vars)
 {
   int i;
 
@@ -118,5 +117,3 @@ casefilter_destroy (struct casefilter *filter)
   free (filter->vars);
   free (filter);
 }
-
-