diff options
author | Jeff King <peff@peff.net> | 2016-02-11 17:26:44 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-12 12:51:15 -0800 |
commit | bd64516aca4d4e22acb33c71429d293a14d355cf (patch) | |
tree | b5ecc69581925bd95e262aa2b203fb3e63756091 /revision.h | |
parent | 13528ab37cadb4d4f7384d0449489760912904b8 (diff) | |
download | git-bd64516aca4d4e22acb33c71429d293a14d355cf.tar.gz |
list-objects: drop name_path entirely
In the previous commit, we left name_path as a thin wrapper
around a strbuf. This patch drops it entirely. As a result,
every show_object_fn callback needs to be adjusted. However,
none of their code needs to be changed at all, because the
only use was to pass it to path_name(), which now handles
the bare strbuf.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/revision.h b/revision.h index 2a26310d6c..7beab15248 100644 --- a/revision.h +++ b/revision.h @@ -257,14 +257,10 @@ extern void put_revision_mark(const struct rev_info *revs, extern void mark_parents_uninteresting(struct commit *commit); extern void mark_tree_uninteresting(struct tree *tree); -struct name_path { - struct strbuf *base; -}; - -char *path_name(const struct name_path *path, const char *name); +char *path_name(struct strbuf *path, const char *name); extern void show_object_with_name(FILE *, struct object *, - const struct name_path *, const char *); + struct strbuf *, const char *); extern void add_pending_object(struct rev_info *revs, struct object *obj, const char *name); |