diff options
author | James McCoy <jamessan@jamessan.com> | 2021-05-06 00:05:50 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-05-06 18:57:22 -0400 |
commit | d9eaca99bea21829e2396b190409c33fe71bcb40 (patch) | |
tree | 8ff48ed6df5d87c65415ea421977c36f52a6dd3a /src/nvim/os/pty_process_unix.h | |
parent | d4fd139c2ab950ca3b6916f68911726bef57fbe9 (diff) | |
download | rneovim-d9eaca99bea21829e2396b190409c33fe71bcb40.tar.gz rneovim-d9eaca99bea21829e2396b190409c33fe71bcb40.tar.bz2 rneovim-d9eaca99bea21829e2396b190409c33fe71bcb40.zip |
coverity/331399: Remove unused "term_name" member from PtyProcess
Diffstat (limited to 'src/nvim/os/pty_process_unix.h')
-rw-r--r-- | src/nvim/os/pty_process_unix.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/os/pty_process_unix.h b/src/nvim/os/pty_process_unix.h index 8c822eafad..765490b92b 100644 --- a/src/nvim/os/pty_process_unix.h +++ b/src/nvim/os/pty_process_unix.h @@ -7,7 +7,6 @@ typedef struct pty_process { Process process; - char *term_name; uint16_t width, height; struct winsize winsize; int tty_fd; |