From eec2761f068a0467ec5ddd140806e4cc9a6f4a58 Mon Sep 17 00:00:00 2001 From: Ben Straub Date: Mon, 3 Feb 2014 15:06:32 -0800 Subject: [PATCH] Fix warning --- tests/repo/head.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/repo/head.c b/tests/repo/head.c index 8ea9a0f42..127176d12 100644 --- a/tests/repo/head.c +++ b/tests/repo/head.c @@ -200,7 +200,7 @@ static void test_reflog(git_repository *repo, size_t idx, const char *email, const char *message) { git_reflog *log; - git_reflog_entry *entry; + const git_reflog_entry *entry; cl_git_pass(git_reflog_read(&log, repo, "HEAD")); entry = git_reflog_entry_byindex(log, idx);