0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

Improve the MS-Windows installer.

This commit is contained in:
Bram Moolenaar
2010-05-24 21:34:22 +02:00
parent e66194a54e
commit 442b4225d3
16 changed files with 146 additions and 80 deletions

View File

@@ -307,7 +307,7 @@ sha256_key(buf)
if (buf == NULL || *buf == NUL)
return (char_u *)"";
return sha256_bytes(buf, STRLEN(buf));
return sha256_bytes(buf, (int)STRLEN(buf));
}
/*
@@ -354,7 +354,7 @@ sha256_self_test()
if (i < 2)
{
hexit = sha256_bytes((char_u *)sha_self_test_msg[i],
STRLEN(sha_self_test_msg[i]));
(int)STRLEN(sha_self_test_msg[i]));
STRCPY(output, hexit);
}
else