Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / data / scratch-handle.c
index 2a08dbb051fc33cbd8eb378a55bf92a7df206763..4c0513f82e0ce40a5730721f2bf6344a706f23ec 100644 (file)
 
 #include <config.h>
 #include <stdlib.h>
-#include "scratch-handle.h"
-#include "casefile.h"
-#include "dictionary.h"
+#include <data/casereader.h>
+#include <data/scratch-handle.h>
+#include <data/dictionary.h>
 
 /* Destroys HANDLE. */
 void
-scratch_handle_destroy (struct scratch_handle *handle) 
+scratch_handle_destroy (struct scratch_handle *handle)
 {
-  if (handle != NULL) 
+  if (handle != NULL)
     {
       dict_destroy (handle->dictionary);
-      casefile_destroy (handle->casefile);
+      casereader_destroy (handle->casereader);
       free (handle);
     }
 }