aboutsummaryrefslogtreecommitdiff
path: root/builtin/pack-objects.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-09-01 15:43:33 -0700
committerJunio C Hamano <gitster@pobox.com>2011-09-01 15:46:12 -0700
commit4947367267cbcd0ca528711b2393613e2e817878 (patch)
treec2a9a053ecadf7b61ef3d6017bb8ba08804342b6 /builtin/pack-objects.c
parentbeba25abbc34a07e07ce933210cda15202ef76cc (diff)
downloadgit-4947367267cbcd0ca528711b2393613e2e817878.tar.gz
git-4947367267cbcd0ca528711b2393613e2e817878.tar.xz
list-objects: pass callback data to show_objects()
The traverse_commit_list() API takes two callback functions, one to show commit objects, and the other to show other kinds of objects. Even though the former has a callback data parameter, so that the callback does not have to rely on global state, the latter does not. Give the show_objects() callback the same callback data parameter. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/pack-objects.c')
-rw-r--r--builtin/pack-objects.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
index f402a843b..fca6cb563 100644
--- a/builtin/pack-objects.c
+++ b/builtin/pack-objects.c
@@ -1936,7 +1936,9 @@ static void show_commit(struct commit *commit, void *data)
commit->object.flags |= OBJECT_ADDED;
}
-static void show_object(struct object *obj, const struct name_path *path, const char *last)
+static void show_object(struct object *obj,
+ const struct name_path *path, const char *last,
+ void *data)
{
char *name = path_name(path, last);