diff options
author | James McCoy <jamessan@jamessan.com> | 2021-04-09 09:48:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:48:35 -0400 |
commit | e3d0fb0d3cdc09a716e925627ca0da47224e1390 (patch) | |
tree | e97e81b57b57d9a845f897333e61d1c440bfe9eb /src/nvim/os/pty_process_win.c | |
parent | 8a1a256b44f7fe9f0d878d4d28d7f41f8157c4ea (diff) | |
parent | 6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26 (diff) | |
download | rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.gz rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.bz2 rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.zip |
Merge pull request #14321 from jamessan/ci-fixes
Some small cleanups/diagnostic improvements
Diffstat (limited to 'src/nvim/os/pty_process_win.c')
-rw-r--r-- | src/nvim/os/pty_process_win.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/os/pty_process_win.c b/src/nvim/os/pty_process_win.c index 94444e4d23..2bf73d08e6 100644 --- a/src/nvim/os/pty_process_win.c +++ b/src/nvim/os/pty_process_win.c @@ -203,11 +203,13 @@ int pty_process_spawn(PtyProcess *ptyproc) cleanup: if (status) { // In the case of an error of MultiByteToWideChar or CreateProcessW. - ELOG("pty_process_spawn: %s: error code: %d", emsg, status); + ELOG("pty_process_spawn(%s): %s: error code: %d", + proc->argv[0], emsg, status); status = os_translate_sys_error(status); } else if (err != NULL) { status = (int)winpty_error_code(err); - ELOG("pty_process_spawn: %s: error code: %d", emsg, status); + ELOG("pty_process_spawn(%s): %s: error code: %d", + proc->argv[0], emsg, status); status = translate_winpty_error(status); } winpty_error_free(err); |