X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=sha1_file.c;h=3372ebcdcac0d36b81663f958784e8a1ec84b900;hb=a3fc9db4499a44fa00eeb2a7c46c08a749dd9bbf;hp=b62d0e3dcd0c0142a025d202eec2f233932aed68;hpb=adcb913c7759c8dd250a3f63140bd71fc856bb17;p=git.git diff --git a/sha1_file.c b/sha1_file.c index b62d0e3dc..3372ebcdc 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;