diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-29 18:34:28 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-08-31 10:33:02 +0200 |
commit | 2ca7edda89bf9294fbdbfee3d503b551f0011da5 (patch) | |
tree | 1eb356d18e8841b90407fa66cb0402ccc88fb068 /libavutil/hash.c | |
parent | 03bf4572419739a6a308c2a667a62f4797fadf49 (diff) | |
download | ffmpeg-2ca7edda89bf9294fbdbfee3d503b551f0011da5.tar.gz |
lavu/hash.c: Add missing "static const".
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavutil/hash.c')
-rw-r--r-- | libavutil/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hash.c b/libavutil/hash.c index 773f29e23b..7037b0d6ff 100644 --- a/libavutil/hash.c +++ b/libavutil/hash.c @@ -60,7 +60,7 @@ typedef struct AVHashContext { uint32_t crc; } AVHashContext; -struct { +static const struct { const char *name; int size; } hashdesc[] = { |