diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-12-05 15:11:11 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-05 15:11:11 -0800 |
commit | 7b1baed3fbcffbc496a3161c969ba188ac7c6a7d (patch) | |
tree | 6c0ae00736b9b24cd6804485f5a43ea31650035c /reachable.h | |
parent | Merge branch 'nd/fsck-progress' (diff) | |
parent | reachable: per-object progress (diff) | |
download | tgif-7b1baed3fbcffbc496a3161c969ba188ac7c6a7d.tar.xz |
Merge branch 'nd/prune-progress'
* nd/prune-progress:
reachable: per-object progress
prune: handle --progress/no-progress
prune: show progress while marking reachable objects
Diffstat (limited to 'reachable.h')
-rw-r--r-- | reachable.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/reachable.h b/reachable.h index 40751810b6..5d082adfec 100644 --- a/reachable.h +++ b/reachable.h @@ -1,6 +1,7 @@ #ifndef REACHEABLE_H #define REACHEABLE_H -extern void mark_reachable_objects(struct rev_info *revs, int mark_reflog); +struct progress; +extern void mark_reachable_objects(struct rev_info *revs, int mark_reflog, struct progress *); #endif |