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