From 5812bce10f3c311ddb8133d0fc506b0344ab8f0c Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sun, 21 Jun 2015 15:05:46 +0100 Subject: [PATCH] [tidy-exports] mark gmtab as static --- cbits/aes/generic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbits/aes/generic.c b/cbits/aes/generic.c index 32963ad..cada775 100644 --- a/cbits/aes/generic.c +++ b/cbits/aes/generic.c @@ -89,7 +89,7 @@ static uint8_t Rcon[] = { }; #define G(a,b,c,d,e,f) { a,b,c,d,e,f } -uint8_t gmtab[256][6] = +static uint8_t gmtab[256][6] = { G(0x00, 0x00, 0x00, 0x00, 0x00, 0x00), G(0x02, 0x03, 0x09, 0x0b, 0x0d, 0x0e), G(0x04, 0x06, 0x12, 0x16, 0x1a, 0x1c), G(0x06, 0x05, 0x1b, 0x1d, 0x17, 0x12),