diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-09-28 12:46:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-28 12:46:03 +0200 |
commit | 87fa495b21c8afa77c190b30e67c78f237c77216 (patch) | |
tree | 3b426c3d6ede9c7ea4099c1c798fdac05e662d38 /src/nvim/os/shell.c | |
parent | 22dfe6925d4784cf60d8d9a054abc5066e4b867f (diff) | |
parent | 7e6a8310b73579b2fa78fb6c410c7101a9f70254 (diff) | |
download | rneovim-87fa495b21c8afa77c190b30e67c78f237c77216.tar.gz rneovim-87fa495b21c8afa77c190b30e67c78f237c77216.tar.bz2 rneovim-87fa495b21c8afa77c190b30e67c78f237c77216.zip |
Merge #5395 from justinmk/log
Diffstat (limited to 'src/nvim/os/shell.c')
-rw-r--r-- | src/nvim/os/shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index 661b12accc..617a505367 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -162,7 +162,7 @@ int os_call_shell(char_u *cmd, ShellOpts opts, char_u *extra_args) /// @param input The input to the shell (NULL for no input), passed to the /// stdin of the resulting process. /// @param len The length of the input buffer (not used if `input` == NULL) -/// @param[out] output A pointer to to a location where the output will be +/// @param[out] output Pointer to a location where the output will be /// allocated and stored. Will point to NULL if the shell /// command did not output anything. If NULL is passed, /// the shell output will be ignored. @@ -227,7 +227,7 @@ static int do_os_system(char **argv, // We want to deal with stream events as fast a possible while queueing // process events, so reset everything to NULL. It prevents closing the - // streams while there's still data in the OS buffer(due to the process + // streams while there's still data in the OS buffer (due to the process // exiting before all data is read). if (input != NULL) { proc->in->events = NULL; |