X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4ecf3e067151e45dc7dead9862416722dcb4a20f..0a23e33630d96f6083b40bc98d7a12d7ad7632f6:/hashtable.c diff --git a/hashtable.c b/hashtable.c index d2f5948b..1775a0be 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; } @@ -142,7 +142,7 @@ void *hashtable_find(struct hashtable *tbl, int64 key, int allocate_if_missing) if (key64) ((struct ht_int64_node*)node)->key = key; else - node->key = key; + node->key = (int32)key; tbl->entries++; return node; }