diff options
author | Aidan Harris <[email protected]> | 2022-05-06 18:57:37 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-05-06 11:57:37 -0700 |
commit | 493b6e56077842de05a91563760c2055b3ddba79 (patch) | |
tree | 3fee2b557f42b078c163dbd8598aac393872602f /module/icp/algs | |
parent | e77d59ebb2fc4394f5e7ddc85d849ec8c4f0a0d2 (diff) |
Fix functions without a prototype
clang-15 emits the following error message for functions without
a prototype:
fs/zfs/os/linux/spl/spl-kmem-cache.c:1423:27: error:
a function declaration without a prototype is deprecated
in all versions of C [-Werror,-Wstrict-prototypes]
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Aidan Harris <[email protected]>
Closes #13421
Diffstat (limited to 'module/icp/algs')
-rw-r--r-- | module/icp/algs/modes/gcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/icp/algs/modes/gcm.c b/module/icp/algs/modes/gcm.c index e666b45b5..ee2100b7f 100644 --- a/module/icp/algs/modes/gcm.c +++ b/module/icp/algs/modes/gcm.c @@ -806,7 +806,7 @@ static gcm_impl_ops_t *gcm_supp_impl[ARRAY_SIZE(gcm_all_impl)]; * fallback to the fastest generic implementation. */ const gcm_impl_ops_t * -gcm_impl_get_ops() +gcm_impl_get_ops(void) { if (!kfpu_allowed()) return (&gcm_generic_impl); |