diff options
author | nulltoken <emeric.fermas@gmail.com> | 2012-07-16 12:12:53 +0200 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2012-07-25 07:53:30 +0200 |
commit | d284b3de631edeaa651bf3ee2c5963cb970016c4 (patch) | |
tree | ded030a4c96481c69fcd151cd3319ee9f6a11492 /src | |
parent | 59341a5d5960b13801404d3690f6bcf27e91efa6 (diff) | |
download | libgit2-d284b3de631edeaa651bf3ee2c5963cb970016c4.tar.gz |
reflog: rename git_reflog_write() to git_reflog_append()
Diffstat (limited to 'src')
-rw-r--r-- | src/reflog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflog.c b/src/reflog.c index 8e9d973d3..b2820cd3e 100644 --- a/src/reflog.c +++ b/src/reflog.c @@ -216,7 +216,7 @@ int git_reflog_read(git_reflog **reflog, git_reference *ref) return error; } -int git_reflog_write(git_reference *ref, const git_oid *oid_old, +int git_reflog_append(git_reference *ref, const git_oid *oid_old, const git_signature *committer, const char *msg) { int error; |