X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fscratch-reader.c;h=4459126bf71cb2b1da46f6a8865f0aae82001b2d;hb=522f263565607b97b83d26bff49b5fa44704df33;hp=cb94e245abf6c985fc7fed7c1bd3a6d9312a8f16;hpb=eca977e618f2d4c6d55d9851b9714fd60e55559b;p=pspp diff --git a/src/data/scratch-reader.c b/src/data/scratch-reader.c index cb94e245ab..4459126bf7 100644 --- a/src/data/scratch-reader.c +++ b/src/data/scratch-reader.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -71,7 +70,7 @@ scratch_reader_open (struct file_handle *fh, struct dictionary **dict) *dict = dict_clone (sh->dictionary); reader = xmalloc (sizeof *reader); reader->fh = fh; - reader->casereader = casefile_get_reader (sh->casefile); + reader->casereader = casefile_get_reader (sh->casefile, NULL); return reader; }