X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;ds=inline;f=sha1_file.c;h=223001033c30eed20d7c5ee59719bffd25036ded;hb=8090c08e1e90274d35bbf06238d2933759f3a1bb;hp=3372ebcdcac0d36b81663f958784e8a1ec84b900;hpb=975bf9cf5ad5d440f98f464ae8124609a4835ce1;p=git.git diff --git a/sha1_file.c b/sha1_file.c index 3372ebcd..22300103 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -13,7 +13,6 @@ #include "commit.h" #include "tag.h" #include "tree.h" -#include #ifndef O_NOATIME #if defined(__linux__) && (defined(__i386__) || defined(__PPC__)) @@ -1162,7 +1161,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(*((uint32_t *)(index + 24 * mi))); + e->offset = ntohl(*((unsigned int *)(index + 24 * mi))); memcpy(e->sha1, sha1, 20); e->p = p; return 1;