* descript.c:
[pspp-builds.git] / src / hash.c
index 38dd7ee27671f0eae0764bf6864b388e43ef2da6..f42901ea8e5479d42c6f0ee0ad0e3c603badc1a6 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <config.h>
 #include "hash.h"
-#include <assert.h>
+#include "error.h"
 #include <limits.h>
 #include <stdlib.h>
 #include "algorithm.h"
@@ -229,7 +229,7 @@ hsh_rehash (struct hsh_table *h, size_t new_size)
 /* A "algo_predicate_func" that returns nonzero if DATA points
    to a non-null void. */
 static int
-not_null (const void *data_, void *aux unused
+not_null (const void *data_, void *aux UNUSED
 {
   void *const *data = data_;
 
@@ -479,7 +479,7 @@ hsh_count (struct hsh_table *h)
 
 #if GLOBAL_DEBUGGING
 #undef NDEBUG
-#include <assert.h>
+#include "error.h"
 #include <stdio.h>
 
 /* Displays contents of hash table H on stdout. */