diff options
author | Vicent Martà <vicent@github.com> | 2013-11-12 04:52:11 -0800 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-11-12 04:52:11 -0800 |
commit | 42593a6965e50b194f48ca2bb857d5499d62b287 (patch) | |
tree | 24aeebf0ab1aed724ade3947503e9e6f68ae4f58 /src/push.c | |
parent | 6414fd338df89eaa5bd4c64f7ab310fb7d5758bb (diff) | |
parent | fb190bbbd06952b369b4fb6c06fa827802671332 (diff) | |
download | libgit2-42593a6965e50b194f48ca2bb857d5499d62b287.tar.gz |
Merge pull request #1957 from linquize/warning3
Fix warnings
Diffstat (limited to 'src/push.c')
-rw-r--r-- | src/push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/push.c b/src/push.c index 4f442c6a2..5ad15e3fd 100644 --- a/src/push.c +++ b/src/push.c @@ -618,7 +618,7 @@ on_error: static int filter_refs(git_remote *remote) { - const git_remote_head **heads; + git_remote_head **heads; size_t heads_len, i; git_vector_clear(&remote->refs); |