Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / data / scratch-handle.h
index 34739cf29cb982549014a84dd9eacb208e1c591f..53e737b7267b3f3d1a4b03cee244c3aea75e84dc 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
 #include <stdbool.h>
 
 /* A scratch file. */
-struct scratch_handle 
+struct scratch_handle
   {
     struct dictionary *dictionary;      /* Dictionary. */
-    struct casefile *casefile;          /* Cases. */
+    struct casereader *casereader;      /* Cases. */
   };
 
 void scratch_handle_destroy (struct scratch_handle *);