diff options
author | Junio C Hamano <junkio@cox.net> | 2007-04-02 15:06:59 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-04 00:19:28 -0700 |
commit | 9a4d8fdc25d6ba08564766c6ded165212f423b61 (patch) | |
tree | 34b5061bdbc8002f500e0af8effd3ca5e662fb70 /unpack-trees.h | |
parent | 7f7932ab25f2ddd6080c8b1e8bfd698e523eb7d4 (diff) | |
download | git-9a4d8fdc25d6ba08564766c6ded165212f423b61.tar.gz |
unpack-trees: get rid of *indpos parameter.
This variable keeps track of which entry in the original index
the traversal is looking at, and belongs to the unpack_trees_options
structure along with other traversal status information.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'unpack-trees.h')
-rw-r--r-- | unpack-trees.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unpack-trees.h b/unpack-trees.h index 191f7442f1..fee7da4382 100644 --- a/unpack-trees.h +++ b/unpack-trees.h @@ -16,6 +16,7 @@ struct unpack_trees_options { int verbose_update; int aggressive; const char *prefix; + int pos; struct dir_struct *dir; merge_fn_t fn; |