Commit 0e98a133 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/xtea: make const tables static const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 90b40b45
......@@ -244,7 +244,7 @@ int main(void)
AVXTEA ctx;
uint8_t buf[8], iv[8];
int i;
const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
static const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
uint8_t ct[32];
uint8_t pl[32];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment