summaryrefslogtreecommitdiff
path: root/src/reflog.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-06-28 07:26:33 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-09-30 15:44:32 +0200
commit20363d583cc843f6b7882094ec5077232e03e16a (patch)
treecd5cc1ab569f6aa39d3ff00d9a8cc6f12bf4ddf0 /src/reflog.c
parenta2a23322193eeca5d2912c0b74c5374f8ec21737 (diff)
downloadlibgit2-20363d583cc843f6b7882094ec5077232e03e16a.tar.gz
reflog: constify byindex
Diffstat (limited to 'src/reflog.c')
-rw-r--r--src/reflog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflog.c b/src/reflog.c
index 8e41621ea..22aa7d8ed 100644
--- a/src/reflog.c
+++ b/src/reflog.c
@@ -148,7 +148,7 @@ size_t git_reflog_entrycount(git_reflog *reflog)
return reflog->entries.length;
}
-const git_reflog_entry * git_reflog_entry_byindex(git_reflog *reflog, size_t idx)
+const git_reflog_entry * git_reflog_entry_byindex(const git_reflog *reflog, size_t idx)
{
assert(reflog);