summaryrefslogtreecommitdiffstats
path: root/src/blowfish.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/blowfish.c')
-rw-r--r--src/blowfish.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blowfish.c b/src/blowfish.c
index ce49957913..65f89327ed 100644
--- a/src/blowfish.c
+++ b/src/blowfish.c
@@ -645,7 +645,7 @@ crypt_blowfish_init(
char_u* seed,
int seed_len)
{
- bf_state_T *bfs = (bf_state_T *)alloc_clear(sizeof(bf_state_T));
+ bf_state_T *bfs = ALLOC_CLEAR_ONE(bf_state_T);
if (bfs == NULL)
return FAIL;