From 6a22712bebbf2fc60d9fc6192dddefd5ad1933e3 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Fri, 15 Dec 2017 13:03:53 +0100 Subject: [PATCH] cmac_mode: s/const static/static const/ --- lib/source/cmac_mode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/source/cmac_mode.c b/lib/source/cmac_mode.c index 96d147e..22adf20 100644 --- a/lib/source/cmac_mode.c +++ b/lib/source/cmac_mode.c @@ -36,7 +36,7 @@ #include /* max number of calls until change the key (2^48).*/ -const static uint64_t MAX_CALLS = ((uint64_t)1 << 48); +static const uint64_t MAX_CALLS = ((uint64_t)1 << 48); /* * gf_wrap -- In our implementation, GF(2^128) is represented as a 16 byte