diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-13 23:37:52 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-13 23:37:52 -0700 |
commit | e5a78b1ca8b62aee8567d67f0e0db5ac7706806a (patch) | |
tree | a6a51f523f6ec691f24bc085bd05ec9decb6122e /builtin-prune.c | |
parent | 1974632c664c2d573b36a00fa993c1c13dd8a967 (diff) | |
download | git-e5a78b1ca8b62aee8567d67f0e0db5ac7706806a.tar.gz |
builtin-prune.c: forgot TYPE => OBJ changes.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-prune.c')
-rw-r--r-- | builtin-prune.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-prune.c b/builtin-prune.c index ebdecee928..d196c41f13 100644 --- a/builtin-prune.c +++ b/builtin-prune.c @@ -158,15 +158,15 @@ static void walk_commit_list(struct rev_info *revs) struct object_array_entry *pending = revs->pending.objects + i; struct object *obj = pending->item; const char *name = pending->name; - if (obj->type == TYPE_TAG) { + if (obj->type == OBJ_TAG) { process_tag((struct tag *) obj, &objects, name); continue; } - if (obj->type == TYPE_TREE) { + if (obj->type == OBJ_TREE) { process_tree((struct tree *)obj, &objects, NULL, name); continue; } - if (obj->type == TYPE_BLOB) { + if (obj->type == OBJ_BLOB) { process_blob((struct blob *)obj, &objects, NULL, name); continue; } |