From: bg Date: Tue, 18 Sep 2012 15:17:23 +0000 (+0200) Subject: more precise type for arguments of bcal_performance_multiple() X-Git-Url: https://git.cryptolib.org/?p=arm-crypto-lib.git;a=commitdiff_plain;h=1d6dd4071379217e80df19117dd7a6508ecb1167 more precise type for arguments of bcal_performance_multiple() --- diff --git a/bcal/bcal-performance.c b/bcal/bcal-performance.c index 9ad15a9..55e4a94 100644 --- a/bcal/bcal-performance.c +++ b/bcal/bcal-performance.c @@ -135,7 +135,7 @@ void bcal_performance(const bcdesc_t* bcd){ } -void bcal_performance_multiple(const bcdesc_t** bcd_list){ +void bcal_performance_multiple(const bcdesc_t* const * bcd_list){ const bcdesc_t* bcd; for(;;){ bcd = *bcd_list; diff --git a/bcal/bcal-performance.h b/bcal/bcal-performance.h index e2aef8d..bc76d51 100644 --- a/bcal/bcal-performance.h +++ b/bcal/bcal-performance.h @@ -32,7 +32,7 @@ #include "blockcipher_descriptor.h" void bcal_performance(const bcdesc_t* hd); -void bcal_performance_multiple(const bcdesc_t** hd_list); +void bcal_performance_multiple(const bcdesc_t* const * hd_list); #endif /* BCAL_PERFORMANCE_H_ */