diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2023-02-21 14:27:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-02-21 14:27:41 +0000 |
commit | a23a11b5bf03454b71fdb5deac0d5f641e222160 (patch) | |
tree | 5ce9eb5b9668eb891072ee7e03823b1c68214656 /src/crypt.c | |
parent | d950984489e50b12d87c85f0cce1d672c880aa23 (diff) | |
download | vim-git-a23a11b5bf03454b71fdb5deac0d5f641e222160.tar.gz |
patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336
Problem: Functions without arguments are not always declared properly.
Solution: Use "(void)" instead of "()". (Yegappan Lakshmanan, closes #12031)
Diffstat (limited to 'src/crypt.c')
-rw-r--r-- | src/crypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypt.c b/src/crypt.c index a2740c98a..b4b48c8cc 100644 --- a/src/crypt.c +++ b/src/crypt.c @@ -155,7 +155,7 @@ static cryptmethod_T cryptmethods[CRYPT_M_COUNT] = { // to avoid that a text file is recognized as encrypted. }; -#ifdef FEAT_SODIUM +#if defined(FEAT_SODIUM) || defined(PROTO) typedef struct { size_t count; unsigned char key[crypto_box_SEEDBYTES]; @@ -396,7 +396,7 @@ crypt_get_header_len(int method_nr) * Get maximum crypt method specific length of the file header in bytes. */ int -crypt_get_max_header_len() +crypt_get_max_header_len(void) { int i; int max = 0; |