From 5aa2bb3eb67f181638ac7c0243beba7974e2b0b0 Mon Sep 17 00:00:00 2001 From: Florian Franzmann Date: Sat, 5 Sep 2020 16:33:39 +0200 Subject: [PATCH] Cleanup: Add missing 'void' --- aes.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aes.h b/aes.h index 25721c8..1b08590 100644 --- a/aes.h +++ b/aes.h @@ -114,10 +114,10 @@ int aes_decrypt_ccm(const BYTE ciphertext[], // IN - Ciphertext, th /////////////////// // Test functions /////////////////// -int aes_test(); -int aes_ecb_test(); -int aes_cbc_test(); -int aes_ctr_test(); -int aes_ccm_test(); +int aes_test(void); +int aes_ecb_test(void); +int aes_cbc_test(void); +int aes_ctr_test(void); +int aes_ccm_test(void); #endif // AES_H -- 2.39.2