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

updated for version 7.4.404

Problem:    Windows 64 bit compiler warnings.
Solution:   Add type casts. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2014-08-13 22:05:53 +02:00
parent 2be795084f
commit 9b8f021d93
3 changed files with 8 additions and 6 deletions

View File

@@ -397,13 +397,13 @@ crypt_encode_alloc(state, from, len, newptr)
return method->encode_buffer_fn(state, from, len, newptr);
if (len == 0)
/* Not buffering, just return EOF. */
return len;
return (long)len;
*newptr = alloc(len);
*newptr = alloc((long)len);
if (*newptr == NULL)
return -1;
method->encode_fn(state, from, len, *newptr);
return len;
return (long)len;
}
/*

View File

@@ -992,7 +992,7 @@ undo_write_bytes(bi, nr, len)
int bufi = 0;
for (i = len - 1; i >= 0; --i)
buf[bufi++] = nr >> (i * 8);
buf[bufi++] = (char_u)(nr >> (i * 8));
return undo_write(bi, buf, (size_t)len);
}
@@ -1093,7 +1093,7 @@ undo_read(bi, buffer, size)
#ifdef FEAT_CRYPT
if (bi->bi_buffer != NULL)
{
int size_todo = size;
int size_todo = (int)size;
char_u *p = buffer;
while (size_todo > 0)
@@ -1119,7 +1119,7 @@ undo_read(bi, buffer, size)
n = bi->bi_avail - bi->bi_used;
mch_memmove(p, bi->bi_buffer + bi->bi_used, n);
bi->bi_used += n;
size_todo -= n;
size_todo -= (int)n;
p += n;
}
return OK;

View File

@@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
404,
/**/
403,
/**/