Commit 2133c44f by Vicent Martí

Merge pull request #355 from jdavid/fix-build

Fix "redefinition of typedef git_indexer" build error
parents 4e521054 2d3e417e
......@@ -45,7 +45,7 @@ struct entry {
uint64_t offset_long;
};
typedef struct git_indexer {
struct git_indexer {
struct git_pack_file *pack;
struct stat st;
struct git_pack_header hdr;
......@@ -54,7 +54,7 @@ typedef struct git_indexer {
git_filebuf file;
unsigned int fanout[256];
git_oid hash;
} git_indexer;
};
const git_oid *git_indexer_hash(git_indexer *idx)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment