summaryrefslogtreecommitdiff
path: root/src/reflog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/reflog.h')
-rw-r--r--src/reflog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reflog.h b/src/reflog.h
index da352ca8f..b6daf2a76 100644
--- a/src/reflog.h
+++ b/src/reflog.h
@@ -10,8 +10,8 @@
#define GIT_REFLOG_SIZE_MIN (2*GIT_OID_HEXSZ+2+17)
struct git_reflog_entry {
- char *oid_old;
- char *oid_cur;
+ git_oid oid_old;
+ git_oid oid_cur;
git_signature *committer;