Browse Source

avutil/xtea: make const tables static const

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 11 years ago
parent
commit
0e98a13322
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/xtea.c

+ 1
- 1
libavutil/xtea.c View File

@@ -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…
Cancel
Save