t0027: add tests for get_stream_filter()
[gitweb.git] / decorate.c
index 7cb5d29a89a43ecf7e433db513b66184df3accb8..270eb2519764f1378fe53352021cd7afb3ea306a 100644 (file)
@@ -8,10 +8,7 @@
 
 static unsigned int hash_obj(const struct object *obj, unsigned int n)
 {
-       unsigned int hash;
-
-       memcpy(&hash, obj->sha1, sizeof(unsigned int));
-       return hash % n;
+       return sha1hash(obj->oid.hash) % n;
 }
 
 static void *insert_decoration(struct decoration *n, const struct object *base, void *decoration)