summaryrefslogtreecommitdiff
path: root/src/sha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sha256.c')
-rw-r--r--src/sha256.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sha256.c b/src/sha256.c
index 048ce75fe..6ea3f81f4 100644
--- a/src/sha256.c
+++ b/src/sha256.c
@@ -360,7 +360,7 @@ sha256_self_test()
else
{
sha256_start(&ctx);
- memset(buf, 'a', 1000);
+ vim_memset(buf, 'a', 1000);
for (j = 0; j < 1000; j++)
sha256_update(&ctx, (char_u *)buf, 1000);
sha256_finish(&ctx, sha256sum);