X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4ecf3e067151e45dc7dead9862416722dcb4a20f..e42fc158c9eb9200dbe69aad38a7f6e86cb13c70:/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; }