Rewrite expression code.
[pspp-builds.git] / src / file-handle.q
index cc499a995111855d1a21fe3cb0a12e01e7a5a3a8..00c3fefd76f910d4168130d0d7e38aabebec6682 100644 (file)
@@ -217,9 +217,10 @@ create_file_handle (const char *handle_name, const char *filename)
   return handle;
 }
 
-void
-destroy_file_handle(struct file_handle *fh, void *aux UNUSED)
+static void
+destroy_file_handle(void *fh_, void *aux UNUSED)
 {
+  struct file_handle *fh = fh_;
   free (fh->name);
   free (fh->filename);
   fn_free_identity (fh->identity);