Index: uspace/lib/c/include/adt/hash_table.h
===================================================================
--- uspace/lib/c/include/adt/hash_table.h	(revision 5b19d806b26e4a267739e5ac28bbe9194259b766)
+++ uspace/lib/c/include/adt/hash_table.h	(revision e994898da769c2fefc731de899af8f1370cd52f4)
@@ -73,5 +73,5 @@
 /** Hash table structure. */
 typedef struct {
-	hash_table_ops_t *op;
+	const hash_table_ops_t *op;
 	list_t *bucket;
 	size_t bucket_cnt;
@@ -86,5 +86,5 @@
 
 extern bool hash_table_create(hash_table_t *, size_t, size_t,
-    hash_table_ops_t *);
+    const hash_table_ops_t *);
 extern void hash_table_destroy(hash_table_t *);
 
