X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=sha1_file.c;h=3372ebcdcac0d36b81663f958784e8a1ec84b900;hb=04e4888e5a6db847368a95eb986202fa460b2153;hp=b62d0e3dcd0c0142a025d202eec2f233932aed68;hpb=8c2462dc5bd1aeb42eb5e07e82f9d062db43cd21;p=git.git diff --git a/sha1_file.c b/sha1_file.c index b62d0e3d..3372ebcd 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -13,6 +13,7 @@ #include "commit.h" #include "tag.h" #include "tree.h" +#include #ifndef O_NOATIME #if defined(__linux__) && (defined(__i386__) || defined(__PPC__)) @@ -1161,7 +1162,7 @@ int find_pack_entry_one(const unsigned char *sha1, int mi = (lo + hi) / 2; int cmp = memcmp(index + 24 * mi + 4, sha1, 20); if (!cmp) { - e->offset = ntohl(*((int*)(index + 24 * mi))); + e->offset = ntohl(*((uint32_t *)(index + 24 * mi))); memcpy(e->sha1, sha1, 20); e->p = p; return 1;