X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fscratch-reader.c;h=d82486fee8a78dfc282db4eb17320538229489ae;hb=c17ea35a73b7a690a54c5c6a213de19f0376e74f;hp=17c1aeaad0d4822d37f2aae0958b611750d0dd48;hpb=92c09e564002d356d20fc1e2e131027ef89f6748;p=pspp diff --git a/src/data/scratch-reader.c b/src/data/scratch-reader.c index 17c1aeaad0..d82486fee8 100644 --- a/src/data/scratch-reader.c +++ b/src/data/scratch-reader.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2006 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 @@ -42,12 +40,12 @@ struct casereader * scratch_reader_open (struct file_handle *fh, struct dictionary **dict) { struct scratch_handle *sh; - + if (!fh_open (fh, FH_REF_SCRATCH, "scratch file", "rs")) return NULL; - + sh = fh_get_scratch_handle (fh); - if (sh == NULL || sh->casereader == NULL) + if (sh == NULL || sh->casereader == NULL) { msg (SE, _("Scratch file handle %s has not yet been written, " "using SAVE or another procedure, so it cannot yet "