summaryrefslogtreecommitdiff
path: root/src/os_unix.c
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/os_unix.c
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/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 33ef78199..3757dc559 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1935,7 +1935,7 @@ get_x11_windis(void)
alarm(0);
signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
if (p_verbose > 0 && sig_alarm_called)
- verb_msg((char_u *)_("Opening the X display timed out"));
+ verb_msg(_("Opening the X display timed out"));
#endif
if (x11_display != NULL)
{