Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / data / scratch-handle.h
index 8a82650bb5f07708a2760760ae86e4bd38ba3df0..53e737b7267b3f3d1a4b03cee244c3aea75e84dc 100644 (file)
 #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 *);