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_ecdsa.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_ecdsa.c')
-rw-r--r-- | lib/libcrypto/engine/tb_ecdsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/engine/tb_ecdsa.c b/lib/libcrypto/engine/tb_ecdsa.c index 005ecb622c2..8f30e956e07 100644 --- a/lib/libcrypto/engine/tb_ecdsa.c +++ b/lib/libcrypto/engine/tb_ecdsa.c @@ -80,7 +80,7 @@ int ENGINE_register_ECDSA(ENGINE *e) return 1; } -void ENGINE_register_all_ECDSA() +void ENGINE_register_all_ECDSA(void) { ENGINE *e; |