From 1d6dd4071379217e80df19117dd7a6508ecb1167 Mon Sep 17 00:00:00 2001 From: bg Date: Tue, 18 Sep 2012 17:17:23 +0200 Subject: [PATCH] more precise type for arguments of bcal_performance_multiple() --- bcal/bcal-performance.c | 2 +- bcal/bcal-performance.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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_ */