aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-05-06 00:05:50 -0400
committerJames McCoy <jamessan@jamessan.com>2021-05-06 18:57:22 -0400
commitd9eaca99bea21829e2396b190409c33fe71bcb40 (patch)
tree8ff48ed6df5d87c65415ea421977c36f52a6dd3a
parentd4fd139c2ab950ca3b6916f68911726bef57fbe9 (diff)
downloadrneovim-d9eaca99bea21829e2396b190409c33fe71bcb40.tar.gz
rneovim-d9eaca99bea21829e2396b190409c33fe71bcb40.tar.bz2
rneovim-d9eaca99bea21829e2396b190409c33fe71bcb40.zip
coverity/331399: Remove unused "term_name" member from PtyProcess
-rw-r--r--src/nvim/os/pty_process_unix.h1
-rw-r--r--src/nvim/os/pty_process_win.h1
2 files changed, 0 insertions, 2 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;
diff --git a/src/nvim/os/pty_process_win.h b/src/nvim/os/pty_process_win.h
index f8ec79a3d6..3f6cc58e3e 100644
--- a/src/nvim/os/pty_process_win.h
+++ b/src/nvim/os/pty_process_win.h
@@ -15,7 +15,6 @@ typedef enum {
typedef struct pty_process {
Process process;
- char *term_name;
uint16_t width, height;
union {
winpty_t *winpty;