X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcase-matcher.c;h=e1ad48fde0853c7f1a477b8532ca4987fe7acbfc;hb=79438d764f7c0490daac9e234c47cf049d8284df;hp=37cb4a60748a4b60e2416476a0ed629ff8f90620;hpb=b5c82cc9aabe7e641011130240ae1b2e84348e23;p=pspp diff --git a/src/data/case-matcher.c b/src/data/case-matcher.c index 37cb4a6074..e1ad48fde0 100644 --- a/src/data/case-matcher.c +++ b/src/data/case-matcher.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 2008, 2009, 2011 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 @@ -16,16 +16,16 @@ #include -#include +#include "data/case-matcher.h" #include -#include -#include -#include -#include +#include "data/case.h" +#include "data/subcase.h" +#include "data/value.h" +#include "libpspp/assertion.h" -#include "xalloc.h" +#include "gl/xalloc.h" struct case_matcher_input { @@ -102,7 +102,7 @@ case_matcher_destroy (struct case_matcher *cm) for (i = 0; i < cm->n_inputs; i++) { struct case_matcher_input *input = &cm->inputs[i]; - subcase_destroy (&input->by_vars); + subcase_uninit (&input->by_vars); } free (cm->inputs); free (cm);