Don't void actually used arguments
Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
diff --git a/library/psa_crypto_driver_wrappers.c b/library/psa_crypto_driver_wrappers.c
index dea85c9..8041d2e 100644
--- a/library/psa_crypto_driver_wrappers.c
+++ b/library/psa_crypto_driver_wrappers.c
@@ -1163,7 +1163,6 @@
&target_operation->ctx.mbedtls_ctx ) );
#endif
default:
- (void) source_operation;
(void) target_operation;
return( PSA_ERROR_BAD_STATE );
}
@@ -1188,7 +1187,6 @@
input, input_length ) );
#endif
default:
- (void) operation;
(void) input;
(void) input_length;
return( PSA_ERROR_BAD_STATE );
@@ -1216,7 +1214,6 @@
break;
#endif
default:
- (void) operation;
(void) hash;
(void) hash_size;
(void) hash_length;