mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/xtea: make const tables static const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
90b40b45d4
commit
0e98a13322
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in New Issue