From: Junio C Hamano Date: Mon, 15 May 2006 19:52:00 +0000 (-0700) Subject: Fix pack-index issue on 64-bit platforms a bit more portably. X-Git-Tag: v1.3.3^0 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1b9bc5a7b7434d771726011613a00cb202bd9f44?ds=inline;hp=1b9bc5a7b7434d771726011613a00cb202bd9f44 Fix pack-index issue on 64-bit platforms a bit more portably. Apparently is not enough for uint32_t on OpenBSD; use "unsigned int" -- hopefully that would stay 32-bit on every platform we care about, at least until we update the pack-index file format. Our sha1 routines optimized for architectures use uint32_t and expects '#include ' to be enough, so OpenBSD on arm or ppc might have similar issues down the road, I dunno. Signed-off-by: Junio C Hamano ---