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 | d7194d318b98964a0c9705a02b4c3e3035642f03 (diff) | |
| parent | 0b26abc0f59ce7899257f75d63ce836e1a6566bd (diff) | |
| download | git-7b1baed3fbcffbc496a3161c969ba188ac7c6a7d.tar.gz | |
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 |
