From be225be7852fc8e4a385b622d24ea35fff761421 Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Mon, 25 Feb 2013 23:36:25 +0100 Subject: [PATCH] tests/pack: fixup 6774b10 Initialize the hash ctx with git_hash_ctx_init, not git_hash_init. --- tests-clar/pack/packbuilder.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests-clar/pack/packbuilder.c b/tests-clar/pack/packbuilder.c index 84fc4d7bd..6dc1c76fe 100644 --- a/tests-clar/pack/packbuilder.c +++ b/tests-clar/pack/packbuilder.c @@ -106,9 +106,10 @@ void test_pack_packbuilder__create_pack(void) cl_git_pass(git_futils_readbuffer(&buf, "testpack.pack")); - cl_git_pass(git_hash_init(&ctx)); + cl_git_pass(git_hash_ctx_init(&ctx)); cl_git_pass(git_hash_update(&ctx, buf.ptr, buf.size)); cl_git_pass(git_hash_final(&hash, &ctx)); + git_hash_ctx_cleanup(&ctx); git_buf_free(&buf);