Remove redundant casts

This commit is contained in:
Anton Ovchinnikov
2015-03-09 00:40:50 +01:00
parent c0a668aa26
commit 9925b3a047
26 changed files with 98 additions and 98 deletions

View File

@@ -333,7 +333,7 @@ bool sha256_self_test(void)
memset(buf, 'a', 1000);
for (size_t j = 0; j < 1000; j++) {
sha256_update(&ctx, (char_u *) buf, 1000);
sha256_update(&ctx, buf, 1000);
}
sha256_finish(&ctx, sha256sum);