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

updated for version 7.3.037

Problem:    Compiler warnings for loss of data. (Mike Williams)
Solution:   Add type casts.
This commit is contained in:
Bram Moolenaar
2010-10-27 12:18:00 +02:00
parent 786989ba37
commit 6b5ef067a5
4 changed files with 9 additions and 6 deletions

View File

@@ -154,7 +154,7 @@ writer(writefn fn, char_u *str, PyInt n)
{
PyInt len = ptr - str;
if (ga_grow(&io_ga, len + 1) == FAIL)
if (ga_grow(&io_ga, (int)(len + 1)) == FAIL)
break;
mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len);
@@ -166,10 +166,10 @@ writer(writefn fn, char_u *str, PyInt n)
}
/* Put the remaining text into io_ga for later printing. */
if (n > 0 && ga_grow(&io_ga, n + 1) == OK)
if (n > 0 && ga_grow(&io_ga, (int)(n + 1)) == OK)
{
mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n);
io_ga.ga_len += n;
io_ga.ga_len += (int)n;
}
}