Fix parsing totals.
[pspp] / src / language / stats / kruskal-wallis.h
index b067d3fdb258a7225b2680655a67a7a24cee2aa3..7adc3129961e3b965ad0acaa15a10dc76638fd4c 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2010, 2011 Free Software Foundation, Inc.
+   Copyright (C) 2010, 2011, 2022 Free Software Foundation, Inc.
 
    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
@@ -24,7 +24,7 @@
 
 struct kruskal_wallis_test
 {
-  struct two_sample_test parent;
+  struct n_sample_test parent;
 };
 
 struct casereader;
@@ -36,6 +36,6 @@ void kruskal_wallis_execute (const struct dataset *ds,
                       const struct npar_test *test,
                       bool exact,
                       double timer
-                      );
+               );
 
 #endif