Skip to content
This repository was archived by the owner on Mar 5, 2024. It is now read-only.

Commit 3ea1a60

Browse files
authored
Merge pull request #29 from haukepetersen/fix_staticatlinebeginning
cmac_mode: s/const static/static const/
2 parents 8a35f17 + 6a22712 commit 3ea1a60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/source/cmac_mode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#include <tinycrypt/utils.h>
3737

3838
/* max number of calls until change the key (2^48).*/
39-
const static uint64_t MAX_CALLS = ((uint64_t)1 << 48);
39+
static const uint64_t MAX_CALLS = ((uint64_t)1 << 48);
4040

4141
/*
4242
* gf_wrap -- In our implementation, GF(2^128) is represented as a 16 byte

0 commit comments

Comments
 (0)