From 0042b62fc6f54935d481b632c1e9153b64d0ce58 Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Wed, 11 Oct 2017 15:48:58 -0400 Subject: Cleanup: Remove "const" qualifiers from function return types. --- ecdsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ecdsa.c') diff --git a/ecdsa.c b/ecdsa.c index 8791ebe..170a24c 100644 --- a/ecdsa.c +++ b/ecdsa.c @@ -199,7 +199,7 @@ const size_t hal_ecdsa_key_t_size = sizeof(struct hal_ecdsa_key); * first time anything asks for any of them. */ -static const ecdsa_curve_t * const get_curve(const hal_curve_name_t curve) +static const ecdsa_curve_t * get_curve(const hal_curve_name_t curve) { static ecdsa_curve_t curve_p256, curve_p384, curve_p521; static int initialized = 0; -- cgit v1.2.3