diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
commit | ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935 (patch) | |
tree | b781b2f8b6f760de57a6de022ab31d383ddeb892 /libavformat/psxstr.c | |
parent | a2fd60437d0c7cf21a9365024efaa764bddaf3ab (diff) | |
download | ffmpeg-ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935.tar.gz |
Fix some "'static' is not at beginning of declaration" warnings.
Originally committed as revision 5956 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/psxstr.c')
-rw-r--r-- | libavformat/psxstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/psxstr.c b/libavformat/psxstr.c index b4a4ac0590..8b026be250 100644 --- a/libavformat/psxstr.c +++ b/libavformat/psxstr.c @@ -80,7 +80,7 @@ typedef struct StrDemuxContext { AVPacket tmp_pkt; } StrDemuxContext; -const static char sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00}; +static const char sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x00}; static int str_probe(AVProbeData *p) { |