commit | 442b4225d3310599a8bc9107dc3f7b4153a286c4 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon May 24 21:34:22 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon May 24 21:34:22 2010 +0200 |
tree | 518b9298185272fad43e5afbc8a7cde21dc867e8 | |
parent | e66194a54e0303568e7db1cb8772e2709afd864c [diff] [blame] |
Improve the MS-Windows installer.
diff --git a/src/sha256.c b/src/sha256.c index 6ea3f81..0f95856 100644 --- a/src/sha256.c +++ b/src/sha256.c
@@ -307,7 +307,7 @@ 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 @@ 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