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

Commit 6a22712

Browse files
committed
cmac_mode: s/const static/static const/
1 parent 8a35f17 commit 6a22712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/source/cmac_mode.c

+1-1
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)