Skip to content

Commit e82e058

Browse files
tihirvonJunio C Hamano
authored andcommitted
GIT_TRACE: fix a mixed declarations and code warning
Signed-off-by: Timo Hirvonen <tihirvon@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 575ba9d commit e82e058

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exec_cmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ int execv_git_cmd(const char **argv)
9898
argv[0] = git_command;
9999

100100
if (getenv("GIT_TRACE")) {
101-
fputs("trace: exec:", stderr);
102101
const char **p = argv;
102+
fputs("trace: exec:", stderr);
103103
while (*p) {
104104
fputc(' ', stderr);
105105
sq_quote_print(stderr, *p);

0 commit comments

Comments
 (0)