diff options
author | 2014-04-27 20:20:57 +0000 | |
---|---|---|
committer | 2014-04-27 20:20:57 +0000 | |
commit | 547ec0d4cc5331d9b94c23102d420332eebf1a3c (patch) | |
tree | 2d63e3db7ddd93a1c64d21ee1cb044f0abdd0b37 /lib/libcrypto/engine/tb_cipher.c | |
parent | Fix library search order in our libtool. (diff) | |
download | wireguard-openbsd-547ec0d4cc5331d9b94c23102d420332eebf1a3c.tar.xz wireguard-openbsd-547ec0d4cc5331d9b94c23102d420332eebf1a3c.zip |
Put explicit (void) in function declarations and shuffle keywords in some
declaration to pass -Wextra, should we want to add it to CFLAGS.
No binary change.
Diffstat (limited to 'lib/libcrypto/engine/tb_cipher.c')
-rw-r--r-- | lib/libcrypto/engine/tb_cipher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/engine/tb_cipher.c b/lib/libcrypto/engine/tb_cipher.c index 177fc1fb739..8d45a9a9cf4 100644 --- a/lib/libcrypto/engine/tb_cipher.c +++ b/lib/libcrypto/engine/tb_cipher.c @@ -85,7 +85,7 @@ int ENGINE_register_ciphers(ENGINE *e) return 1; } -void ENGINE_register_all_ciphers() +void ENGINE_register_all_ciphers(void) { ENGINE *e; |