X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fnpar.q;h=647205fd690a26e5e2a73e8323be872b40efc269;hb=085d4563d8d5adfb3a2552d6ab1959c3fcacaee0;hp=eff5c9195f3eb7f7e7190b4ed65aa363783c1491;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp diff --git a/src/language/stats/npar.q b/src/language/stats/npar.q index eff5c9195f..647205fd69 100644 --- a/src/language/stats/npar.q +++ b/src/language/stats/npar.q @@ -1,22 +1,18 @@ -/* PSPP - NPAR TESTS. -*-c-*- +/* PSPP - a program for statistical analysis. + Copyright (C) 2006 Free Software Foundation, Inc. -Copyright (C) 2006 Free Software Foundation, Inc. -Author: John Darrington , + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -This program is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. */ + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ #include @@ -190,7 +186,8 @@ cmd_npar_tests (struct lexer *lexer, struct dataset *ds) input = casereader_create_filter_missing (input, npar_specs.vv, npar_specs.n_vars, - npar_specs.filter, NULL); + npar_specs.filter, + NULL, NULL); grouper = casegrouper_create_splits (input, dataset_dict (ds)); while (casegrouper_get_next_group (grouper, &group)) @@ -427,8 +424,8 @@ parse_two_sample_related_test (struct lexer *lexer, { if ( n_vlist1 != n_vlist2) msg (SE, _("PAIRED was specified but the number of variables " - "preceding WITH (%d) did not match the number " - "following (%d)."), (int) n_vlist1, (int) n_vlist2); + "preceding WITH (%zu) did not match the number " + "following (%zu)."), n_vlist1, n_vlist2); test_parameters->n_pairs = n_vlist1 ; }