aboutsummaryrefslogtreecommitdiff
path: root/ecdsa.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2017-10-11 15:48:58 -0400
committerPaul Selkirk <paul@psgd.org>2017-10-11 15:48:58 -0400
commit0042b62fc6f54935d481b632c1e9153b64d0ce58 (patch)
tree6c9fe82f7e0346f70316d979e28cbb659cd79cf7 /ecdsa.c
parent63636301593c8a3952afae61c1b5f279c27f69ea (diff)
Cleanup: Remove "const" qualifiers from function return types.
Diffstat (limited to 'ecdsa.c')
-rw-r--r--ecdsa.c2
1 files changed, 1 insertions, 1 deletions
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;