* lib/di-set.c (di_set_insert): Cast hash_insert0 argument to
"(void const *)", not "(void *)". Spotted by Bruno Haible.
+2011-02-08 Jim Meyering <meyering@redhat.com>
+
+ di-set: add "const" to a cast
+ * lib/di-set.c (di_set_insert): Cast hash_insert0 argument to
+ "(void const *)", not "(void *)". Spotted by Bruno Haible.
+
2011-02-06 Bruno Haible <bruno@clisp.org>
Rename module 'wctype' to 'wctype-h'.
return -1;
/* Put I into the inode set. */
- return hash_insert0 (ino_set, (void *) i, NULL);
+ return hash_insert0 (ino_set, (void const *) i, NULL);
}
/* Look up the DEV,INO pair in the set DIS.