diff options
Diffstat (limited to 'builtin/prune.c')
| -rw-r--r-- | builtin/prune.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/builtin/prune.c b/builtin/prune.c index 8dcfecde0f..f0e2bff04c 100644 --- a/builtin/prune.c +++ b/builtin/prune.c @@ -123,11 +123,12 @@ int cmd_prune(int argc, const char **argv, const char *prefix)  		die(_("cannot prune in a precious-objects repo"));  	while (argc--) { -		unsigned char sha1[20]; +		struct object_id oid;  		const char *name = *argv++; -		if (!get_sha1(name, sha1)) { -			struct object *object = parse_object_or_die(sha1, name); +		if (!get_oid(name, &oid)) { +			struct object *object = parse_object_or_die(&oid, +								    name);  			add_pending_object(&revs, object, "");  		}  		else  | 
