Skip to content

Commit

Permalink
git-annotate: no need to exec blame; it is built-in now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Nov 10, 2006
1 parent 368c2ac commit a19f901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin-annotate.c
Expand Up @@ -4,7 +4,7 @@
* Copyright (C) 2006 Ryan Anderson
*/
#include "git-compat-util.h"
#include "exec_cmd.h"
#include "builtin.h"

int cmd_annotate(int argc, const char **argv, const char *prefix)
{
Expand All @@ -20,6 +20,6 @@ int cmd_annotate(int argc, const char **argv, const char *prefix)
}
nargv[argc + 1] = NULL;

return execv_git_cmd(nargv);
return cmd_blame(argc + 1, nargv, prefix);
}

0 comments on commit a19f901

Please sign in to comment.