From ee1479c56b5594ad673f4a724cd2a95e4c9e337b Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Thu, 21 Oct 2010 16:14:47 +0200 Subject: Fix a typo in dhash.h --- dhash/dhash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dhash') diff --git a/dhash/dhash.h b/dhash/dhash.h index 95f9fff..a10ed24 100644 --- a/dhash/dhash.h +++ b/dhash/dhash.h @@ -309,7 +309,7 @@ int hash_delete(hash_table_t *table, hash_key_t *key); * function. It can be used for any purpose the caller wants. The callback * parameter list is: * - * bool callback(hash_entry_t *item, hash_table_t *user_data); + * bool callback(hash_entry_t *item, void *user_data); * * WARNING: Do not modify the contents of the table during an iteration it will * produce undefined results. If you need to visit each item in the table and -- cgit