diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-30 22:38:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-30 22:38:16 +0100 |
commit | 0c5c3faef2d54151a8c144539e3e5a3350fb18c7 (patch) | |
tree | 03c50a14ada7c115302d2012659da2f681a4a43d /src/os_unix.c | |
parent | a2c2ae473ab8789ceba9706713441a365dec685e (diff) | |
download | vim-git-0c5c3faef2d54151a8c144539e3e5a3350fb18c7.tar.gz |
patch 8.1.2370: build problems on VMSv8.1.2370
Problem: Build problems on VMS.
Solution: Adjust the build file. (Zoltan Arpadffy)
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 6fa070274..fd50eb316 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -1671,7 +1671,7 @@ ex_xrestore(exarg_T *eap) xterm_display_allocated = TRUE; } smsg(_("restoring display %s"), xterm_display == NULL - ? (char *)mch_getenv("DISPLAY") : xterm_display); + ? (char *)mch_getenv((char_u *)"DISPLAY") : xterm_display); clear_xterm_clip(); x11_window = 0; @@ -6257,7 +6257,7 @@ select_eintr: maxfd = ConnectionNumber(xterm_dpy); /* An event may have already been read but not handled. In - * particulary, XFlush may cause this. */ + * particularly, XFlush may cause this. */ xterm_update(); } # endif |