diff options
Diffstat (limited to 'csum-file.h')
-rw-r--r-- | csum-file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csum-file.h b/csum-file.h index b7475f16c2..ffccbf0996 100644 --- a/csum-file.h +++ b/csum-file.h @@ -11,7 +11,7 @@ struct hashfile { int fd; int check_fd; unsigned int offset; - git_hash_ctx ctx; + struct git_hash_ctx ctx; off_t total; struct progress *tp; const char *name; @@ -33,7 +33,7 @@ struct hashfile { /* Checkpoint */ struct hashfile_checkpoint { off_t offset; - git_hash_ctx ctx; + struct git_hash_ctx ctx; }; void hashfile_checkpoint_init(struct hashfile *, struct hashfile_checkpoint *); |