diff options
author | Jakob Pfender <jpfender@elegosoft.com> | 2011-04-28 17:31:13 +0200 |
---|---|---|
committer | Jakob Pfender <jpfender@elegosoft.com> | 2011-04-28 17:31:13 +0200 |
commit | e3c7786b22b385d7ec5049c5315c74bd37182e8c (patch) | |
tree | cb3ab2b62e0aa42543555bf7a23c4288a6c4a860 /src/index.c | |
parent | 4c0b6a6dac97f82da927720adb2e0bc285e0c2f1 (diff) | |
download | libgit2-e3c7786b22b385d7ec5049c5315c74bd37182e8c.tar.gz |
index.c: Remove duplicate function declaration
read_unmerged_internal() was present twice.
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c index 6a2afda06..94d1c9e2a 100644 --- a/src/index.c +++ b/src/index.c @@ -99,7 +99,6 @@ static size_t read_entry(git_index_entry *dest, const void *buffer, size_t buffe static int read_header(struct index_header *dest, const void *buffer); static int read_tree(git_index *index, const char *buffer, size_t buffer_size); -static int read_unmerged_internal(git_index *, const char **, size_t buffer_size); static git_index_tree *read_tree_internal(const char **, const char *, git_index_tree *); static int read_unmerged_internal(git_index *, const char **, size_t buffer_size); |