summaryrefslogtreecommitdiff
path: root/libavutil/xtea-test.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-04-07 18:52:10 +0200
committerDiego Biurrun <diego@biurrun.de>2016-04-29 16:21:23 +0200
commitf2422b58756ba97e3cbadc190f1ed950aa201ec7 (patch)
treebbc5cf5e0eb667b9ffc8329cd7e9a0e29ff0ff3b /libavutil/xtea-test.c
parent5b1409c75563b4a3aca113c34d09e3b5442de47f (diff)
testprogs: Mark some tables as static const
Diffstat (limited to 'libavutil/xtea-test.c')
-rw-r--r--libavutil/xtea-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/xtea-test.c b/libavutil/xtea-test.c
index f81cfdc3e8..98445760eb 100644
--- a/libavutil/xtea-test.c
+++ b/libavutil/xtea-test.c
@@ -83,7 +83,7 @@ int main(void)
AVXTEA ctx;
uint8_t buf[16], iv[8];
int i, j;
- const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
+ static const uint8_t src[32] = "HelloWorldHelloWorldHelloWorld";
uint8_t ct[32];
uint8_t pl[32];