]> git.cryptolib.org Git - arm-crypto-lib.git/commitdiff
more precise type for arguments of bcal_performance_multiple()
authorbg <daniel.otte@rub.de>
Tue, 18 Sep 2012 15:17:23 +0000 (17:17 +0200)
committerbg <daniel.otte@rub.de>
Tue, 18 Sep 2012 15:17:23 +0000 (17:17 +0200)
bcal/bcal-performance.c
bcal/bcal-performance.h

index 9ad15a9d79faf50fb79679e1cfa0105bc1bf1bd3..55e4a948b854ea8a5256eedcf0c076b15893fa58 100644 (file)
@@ -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;
index e2aef8dd941100803c98d16be76cb0fc83811cd2..bc76d5135e2945f5cb6e4aae7b59e41be06fadd7 100644 (file)
@@ -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_ */