diff options
author | Edward Thomson <ethomson@microsoft.com> | 2012-11-12 19:22:49 -0600 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2012-11-13 10:23:05 -0600 |
commit | 603bee07918b50051d7bb45722932fc409b38a67 (patch) | |
tree | 99951bc2c5470bc429d42eb9eb6151b2de6b08be /src/pack-objects.h | |
parent | d6fb09240913c9756de5f4a2462062008ebac252 (diff) | |
download | libgit2-603bee07918b50051d7bb45722932fc409b38a67.tar.gz |
Remove git_hash_ctx_new - callers now _ctx_init()
Diffstat (limited to 'src/pack-objects.h')
-rw-r--r-- | src/pack-objects.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pack-objects.h b/src/pack-objects.h index 0a88f7dd7..8c01f7189 100644 --- a/src/pack-objects.h +++ b/src/pack-objects.h @@ -52,7 +52,7 @@ struct git_packbuilder { git_repository *repo; /* associated repository */ git_odb *odb; /* associated object database */ - git_hash_ctx *ctx; + git_hash_ctx ctx; uint32_t nr_objects, nr_alloc, |