Added some HLINK debugging output and enabled it for hardlink tests.
[rsync/rsync.git] / hashtable.c
index d2f5948..7da907c 100644 (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;
 }