X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdata%2Fsparse-cases.c;h=1f3fb092a12b77a0601cdce75717a4e87d883a24;hb=0527ca8a9d13e99d51b579b27bbfde7d3e11cd94;hp=1a12221b4b294a4ccd1b8b9f0c6da44ccafaf993;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp-builds.git diff --git a/src/data/sparse-cases.c b/src/data/sparse-cases.c index 1a12221b..1f3fb092 100644 --- a/src/data/sparse-cases.c +++ b/src/data/sparse-cases.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2007 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 the Free Software Foundation; either version 2 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 3 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. */ + along with this program. If not, see . */ #include @@ -50,7 +48,7 @@ sparse_cases_create (size_t column_cnt) struct sparse_cases *sc = xmalloc (sizeof *sc); sc->column_cnt = column_cnt; sc->default_columns = NULL; - sc->max_memory_cases = get_workspace_cases (column_cnt); + sc->max_memory_cases = settings_get_workspace_cases (column_cnt); sc->memory = sparse_array_create (sizeof (struct ccase)); sc->disk = NULL; sc->disk_cases = NULL;