X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b3bf9b9df95137a3a43248be9599d919b04877af..0b8a9bd69d1e4003bdadb663581533681adba808:/hashtable.c diff --git a/hashtable.c b/hashtable.c index d5f1d110..219210de 100644 --- a/hashtable.c +++ b/hashtable.c @@ -106,7 +106,7 @@ void *hashtable_find(struct hashtable *tbl, int64 key, int allocate_if_missing) uchar buf[4], *keyp = buf; int i; - SIVAL(buf, 0, key); + SIVALu(buf, 0, key); for (ndx = 0, i = 0; i < 4; i++) { ndx += keyp[i]; ndx += (ndx << 10);