diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-11 19:58:49 +0000 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2021-11-11 20:04:49 +0000 |
commit | 0b0e608b63a82e257b01af2eb2dd4b483a78a2bf (patch) | |
tree | f4cf50098e86e055b14ed29d0dc63534dc5b96b2 /tests/refs/reflog/reflog_helpers.c | |
parent | e02061cbd3f7ba31b48bffc9e310932e14f0edaa (diff) | |
download | libgit2-users/ethomson/cmake2.tar.gz |
tests: include function declarationsusers/ethomson/cmake2
Diffstat (limited to 'tests/refs/reflog/reflog_helpers.c')
-rw-r--r-- | tests/refs/reflog/reflog_helpers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/refs/reflog/reflog_helpers.c b/tests/refs/reflog/reflog_helpers.c index 22619a4e3..2ea41ee06 100644 --- a/tests/refs/reflog/reflog_helpers.c +++ b/tests/refs/reflog/reflog_helpers.c @@ -2,8 +2,9 @@ #include "repository.h" #include "reflog.h" +#include "reflog_helpers.h" -static int reflog_entry_tostr(git_str *out, const git_reflog_entry *entry) +int reflog_entry_tostr(git_str *out, const git_reflog_entry *entry) { char old_oid[GIT_OID_HEXSZ], new_oid[GIT_OID_HEXSZ]; |