diff options
Diffstat (limited to 'builtin-help.c')
-rw-r--r-- | builtin-help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-help.c b/builtin-help.c index bc1b4da3b..bb0b03f1a 100644 --- a/builtin-help.c +++ b/builtin-help.c @@ -221,13 +221,13 @@ static void show_man_page(const char *git_cmd) execlp("man", "man", page, NULL); } -int cmd_version(int argc, const char **argv, char **envp) +int cmd_version(int argc, const char **argv, const char *prefix) { printf("git version %s\n", git_version_string); return 0; } -int cmd_help(int argc, const char **argv, char **envp) +int cmd_help(int argc, const char **argv, const char *prefix) { const char *help_cmd = argc > 1 ? argv[1] : NULL; if (!help_cmd) |