diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-03-17 15:02:26 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-03-17 15:02:26 -0700 |
| commit | 9a75ecda1b5162de9c2c93f080354e335f8d3820 (patch) | |
| tree | d763f8b19142648d199c0fae862dc06b7a97d44a | |
| parent | Merge branch 'jk/doc-credential-helper' into maint (diff) | |
| parent | run-command.h: fix mis-indented struct member (diff) | |
| download | git-9a75ecda1b5162de9c2c93f080354e335f8d3820.tar.gz git-9a75ecda1b5162de9c2c93f080354e335f8d3820.zip | |
Merge branch 'jk/run-command-formatfix' into maint
Code style cleanup.
* jk/run-command-formatfix:
run-command.h: fix mis-indented struct member
| -rw-r--r-- | run-command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-command.h b/run-command.h index 592d9dc035..0f3cc73ab6 100644 --- a/run-command.h +++ b/run-command.h @@ -116,7 +116,7 @@ struct child_process { unsigned no_stdin:1; unsigned no_stdout:1; unsigned no_stderr:1; - unsigned git_cmd:1; /* if this is to be git sub-command */ + unsigned git_cmd:1; /* if this is to be git sub-command */ /** * If the program cannot be found, the functions return -1 and set |
