X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fany-reader.c;h=1c1b519b2dce7c289d8cb11d340582cbc199dcf3;hb=0553d00dca10c2d2beeffd88fd12120e43a01025;hp=009e42270d5403866c431c8f4f6b171ed8b18702;hpb=92c09e564002d356d20fc1e2e131027ef89f6748;p=pspp diff --git a/src/data/any-reader.c b/src/data/any-reader.c index 009e42270d..1c1b519b2d 100644 --- a/src/data/any-reader.c +++ b/src/data/any-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 #include "any-reader.h" @@ -37,7 +35,7 @@ #define _(msgid) gettext (msgid) /* Result of type detection. */ -enum detect_result +enum detect_result { YES, /* It is this type. */ NO, /* It is not this type. */ @@ -60,9 +58,9 @@ try_detect (struct file_handle *handle, bool (*detect) (FILE *)) fh_get_file_name (handle), strerror (errno)); return IO_ERROR; } - + is_type = detect (file); - + fn_close (fh_get_file_name (handle), file); return is_type ? YES : NO; @@ -74,7 +72,7 @@ try_detect (struct file_handle *handle, bool (*detect) (FILE *)) struct casereader * any_reader_open (struct file_handle *handle, struct dictionary **dict) { - switch (fh_get_referent (handle)) + switch (fh_get_referent (handle)) { case FH_REF_FILE: {