Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  show-branch: Fix die message in parse_reflog_param()
  • Loading branch information
Junio C Hamano committed May 18, 2009
2 parents 55524fc + 5acb3e5 commit 59e5fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin-show-branch.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ static void parse_reflog_param(const char *arg, int *cnt, const char **base)
if (*ep == ',')
*base = ep + 1;
else if (*ep)
die("unrecognized reflog param '%s'", arg + 9);
die("unrecognized reflog param '%s'", arg);
else
*base = NULL;
if (*cnt <= 0)
Expand Down

0 comments on commit 59e5fb3

Please sign in to comment.