Added some HLINK debugging output and enabled it for hardlink tests.

This commit is contained in:
Wayne Davison
2008-07-17 07:43:11 -07:00
parent 6d56efa6ea
commit 0c096e29aa
5 changed files with 37 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ struct hashtable *hashtable_create(int size, int key64)
tbl->size = size;
tbl->entries = 0;
tbl->node_size = node_size;
tbl->key64 = key64;
tbl->key64 = (short)key64;
return tbl;
}