Index: generic/nsfFunPtrHashTable.c =================================================================== diff -u -N -r6e37cdb8a67e237e6726cc05dbe5f496248c8826 -rb089be700bb58579a48e77619512a47eb3c5562d --- generic/nsfFunPtrHashTable.c (.../nsfFunPtrHashTable.c) (revision 6e37cdb8a67e237e6726cc05dbe5f496248c8826) +++ generic/nsfFunPtrHashTable.c (.../nsfFunPtrHashTable.c) (revision b089be700bb58579a48e77619512a47eb3c5562d) @@ -88,8 +88,8 @@ static unsigned int FunPtrKey( - Tcl_HashTable *tablePtr, /* Hash table. */ - VOID *keyPtr) /* Key from which to compute hash value. */ + Tcl_HashTable *UNUSED(tablePtr), /* Hash table. */ + VOID *keyPtr) /* Key from which to compute hash value. */ { funPtrEntry_t *e = (funPtrEntry_t *)keyPtr; Nsf_AnyFun *value = e->funPtr; @@ -149,8 +149,8 @@ */ static Tcl_HashEntry * AllocFunPtrEntry( - Tcl_HashTable *tablePtr, /* Hash table. */ - VOID *keyPtr) /* Key to store in the hash table entry. */ + Tcl_HashTable *UNUSED(tablePtr), /* Hash table. */ + VOID *keyPtr) /* Key to store in the hash table entry. */ { funPtrEntry_t *e = (funPtrEntry_t *)keyPtr; Tcl_HashEntry *hPtr;