more precise type for arguments of bcal_performance_multiple()

This commit is contained in:
bg 2012-09-18 17:17:23 +02:00
parent 7390f9235d
commit 1d6dd40713
2 changed files with 2 additions and 2 deletions

View 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;

View 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_ */