Skip to content

Commit 539052f

Browse files
peffgitster
authored andcommitted
run-command.h: fix mis-indented struct member
An accidental conversion of a tab to 4 spaces snuck into 4c4066d (run-command: move doc to run-command.h, 2019-11-17), messing up the alignment when you have the project-recommended 8-width tabstops. Let's revert that line. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4c4066d commit 539052f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-command.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ struct child_process {
116116
unsigned no_stdin:1;
117117
unsigned no_stdout:1;
118118
unsigned no_stderr:1;
119-
unsigned git_cmd:1; /* if this is to be git sub-command */
119+
unsigned git_cmd:1; /* if this is to be git sub-command */
120120

121121
/**
122122
* If the program cannot be found, the functions return -1 and set

0 commit comments

Comments
 (0)