X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6d56efa6ea66afa2e6f4eb79d9dd5f3b54b723c3..0c096e29aa0e89dd8b45ac1d898f142c2c2094de:/hashtable.c diff --git a/hashtable.c b/hashtable.c index d2f5948b..7da907c6 100644 --- a/hashtable.c +++ b/hashtable.c @@ -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; }