diff options
author | Jacques Germishuys <jacquesg@striata.com> | 2014-04-03 15:50:21 +0200 |
---|---|---|
committer | Jacques Germishuys <jacquesg@striata.com> | 2014-04-03 16:06:31 +0200 |
commit | 3b4ba2787049c561cd7a9e3fea8fc16e473a0b32 (patch) | |
tree | 14f1ba819d09fce9872eb31db424b30274447d02 /src/push.c | |
parent | fd61f05ea605155ed9e56bfad0e804c6718e0611 (diff) | |
download | libgit2-3b4ba2787049c561cd7a9e3fea8fc16e473a0b32.tar.gz |
Const correctness!
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 521355621..5c8de3339 100644 --- a/src/push.c +++ b/src/push.c @@ -651,7 +651,7 @@ int git_push_finish(git_push *push) return 0; } -int git_push_unpack_ok(git_push *push) +int git_push_unpack_ok(const git_push *push) { return push->unpack_ok; } |