X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fscratch-handle.c;h=0ac56433812d83040e7d507bb8e98f29f82d5611;hb=aed0d6941f474ebd12224d8092bb0e6da64081c6;hp=5e3b74adb6f1f07adfa490fecd488abf671c1a51;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp-builds.git diff --git a/src/data/scratch-handle.c b/src/data/scratch-handle.c index 5e3b74ad..0ac56433 100644 --- a/src/data/scratch-handle.c +++ b/src/data/scratch-handle.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 @@ -19,9 +18,9 @@ #include #include -#include "scratch-handle.h" -#include "casefile.h" -#include "dictionary.h" +#include +#include +#include /* Destroys HANDLE. */ void @@ -30,7 +29,7 @@ scratch_handle_destroy (struct scratch_handle *handle) if (handle != NULL) { dict_destroy (handle->dictionary); - casefile_destroy (handle->casefile); + casereader_destroy (handle->casereader); free (handle); } }