summaryrefslogtreecommitdiff
path: root/src/proto.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-22 21:45:40 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-22 21:45:40 +0100
commit563bbeabcce5580e03648e687bd7ddb9626a03d9 (patch)
tree161f7c217cd66e39dbedeb2618a891b6c43d384b /src/proto.h
parent57a6bf056715bd5c94d8047247615e39862424e7 (diff)
downloadvim-git-563bbeabcce5580e03648e687bd7ddb9626a03d9.tar.gz
patch 8.1.0791: a few compiler warnings on VMSv8.1.0791
Problem: A few compiler warnings on VMS. Solution: Remove type cast. Adjust #ifdef. (Zoltan Arpadffy)
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto.h b/src/proto.h
index 0bac08757..a71b63251 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -256,7 +256,7 @@ void ch_log(channel_T *ch, const char *fmt, ...)
# endif
# if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
-# if defined(UNIX) || defined(MACOS_X)
+# if defined(UNIX) || defined(MACOS_X) || defined(VMS)
# include "pty.pro"
# endif
# endif