Fix parameter name in PSA_BLOCK_CIPHER_BLOCK_SIZE
diff --git a/include/psa/crypto.h b/include/psa/crypto.h
index 48586a2..cc9881b 100644
--- a/include/psa/crypto.h
+++ b/include/psa/crypto.h
@@ -178,7 +178,7 @@
 #define PSA_KEY_TYPE_IS_ECC(type)                                       \
     (((type) & ~PSA_KEY_TYPE_ECC_CURVE_MASK) == PSA_KEY_TYPE_ECC_BASE)
 
-#define PSA_BLOCK_CIPHER_BLOCK_SIZE(key_type)        \
+#define PSA_BLOCK_CIPHER_BLOCK_SIZE(type)            \
     (                                                \
         (type) == PSA_KEY_TYPE_AES ? 16 :            \
         (type) == PSA_KEY_TYPE_DES ? 8 :             \