From bdace838c67c1bd94e55e34270a8325933891466 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 2 Mar 2019 10:13:42 +0100 Subject: patch 8.1.0989: various small code ugliness Problem: Various small code ugliness. Solution: Remove pointless NULL checks. Fix function calls. Fix typos. (Dominique Pelle, closes #4060) --- src/crypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/crypt.c') diff --git a/src/crypt.c b/src/crypt.c index 47617e9a9..e9c52aa14 100644 --- a/src/crypt.c +++ b/src/crypt.c @@ -42,7 +42,7 @@ typedef struct { /* Optional function pointer for a self-test. */ int (* self_test_fn)(); - /* Function pointer for initializing encryption/decription. */ + // Function pointer for initializing encryption/description. void (* init_fn)(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); -- cgit v1.2.1