diff options
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.c b/src/index.c index e6a181979..f6f282d32 100644 --- a/src/index.c +++ b/src/index.c @@ -543,7 +543,7 @@ static int read_tree_internal(git_index_tree **out, { git_index_tree *tree; const char *name_start, *buffer; - long count; + int count; int error = GIT_SUCCESS; if ((tree = git__malloc(sizeof(git_index_tree))) == NULL) @@ -685,7 +685,7 @@ static int read_unmerged(git_index *index, const char *buffer, size_t size) buffer += len; for (i = 0; i < 3; i++) { - long tmp; + int tmp; if (git__strtol32(&tmp, buffer, &endptr, 8) < GIT_SUCCESS || !endptr || endptr == buffer || *endptr || (unsigned)tmp > UINT_MAX) |