diff options
Diffstat (limited to 't/helper/test-ref-store.c')
| -rw-r--r-- | t/helper/test-ref-store.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/t/helper/test-ref-store.c b/t/helper/test-ref-store.c index b314b81a45..3986665037 100644 --- a/t/helper/test-ref-store.c +++ b/t/helper/test-ref-store.c @@ -123,9 +123,10 @@ static int cmd_resolve_ref(struct ref_store *refs, const char **argv)  	int resolve_flags = arg_flags(*argv++, "resolve-flags");  	int flags;  	const char *ref; +	int ignore_errno;  	ref = refs_resolve_ref_unsafe(refs, refname, resolve_flags, -				      &oid, &flags); +				      &oid, &flags, &ignore_errno);  	printf("%s %s 0x%x\n", oid_to_hex(&oid), ref ? ref : "(null)", flags);  	return ref ? 0 : 1;  }  | 
