diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-24 21:34:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-24 21:34:22 +0200 |
commit | 442b4225d3310599a8bc9107dc3f7b4153a286c4 (patch) | |
tree | 518b9298185272fad43e5afbc8a7cde21dc867e8 /src/sha256.c | |
parent | e66194a54e0303568e7db1cb8772e2709afd864c (diff) | |
download | vim-git-442b4225d3310599a8bc9107dc3f7b4153a286c4.tar.gz |
Improve the MS-Windows installer.
Diffstat (limited to 'src/sha256.c')
-rw-r--r-- | src/sha256.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sha256.c b/src/sha256.c index 6ea3f81f4..0f9585623 100644 --- a/src/sha256.c +++ b/src/sha256.c @@ -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 |