0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.1.0766: various problems when using Vim on VMS

Problem:    Various problems when using Vim on VMS.
Solution:   Various fixes. Define long_long_T. (Zoltan Arpadffy)
This commit is contained in:
Bram Moolenaar
2019-01-17 17:13:30 +01:00
parent 4131fd5509
commit 88c86eb751
14 changed files with 114 additions and 48 deletions

View File

@@ -7414,7 +7414,7 @@ tv_get_string_buf_chk(typval_T *varp, char_u *buf)
{
case VAR_NUMBER:
vim_snprintf((char *)buf, NUMBUFLEN, "%lld",
(long long)varp->vval.v_number);
(long_long_T)varp->vval.v_number);
return buf;
case VAR_FUNC:
case VAR_PARTIAL: