Skip to content

Commit

Permalink
handle_duplicate(): mark error message for translation
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Oct 30, 2013
1 parent df02ebd commit 76ea671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ int for_each_remote(each_remote_fn fn, void *priv)
static void handle_duplicate(struct ref *ref1, struct ref *ref2)
{
if (strcmp(ref1->name, ref2->name))
die("%s tracks both %s and %s",
die(_("%s tracks both %s and %s"),
ref2->peer_ref->name, ref1->name, ref2->name);
free(ref2->peer_ref);
free(ref2);
Expand Down

0 comments on commit 76ea671

Please sign in to comment.