diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-03-22 15:33:28 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-03-23 09:25:30 +0100 |
commit | 8dead2aaca4aa8b84b77b05745755afb56b7d37a (patch) | |
tree | 26639cd6652d303f57f2646d160bb9c89b593ac7 /libavcodec/pcx.c | |
parent | d909f43b5c773a73c8d526638744547ba4aa8c59 (diff) | |
download | ffmpeg-8dead2aaca4aa8b84b77b05745755afb56b7d37a.tar.gz |
Move const qualifier before type name
Diffstat (limited to 'libavcodec/pcx.c')
-rw-r--r-- | libavcodec/pcx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pcx.c b/libavcodec/pcx.c index d9f0d24ab1..aa69d510ea 100644 --- a/libavcodec/pcx.c +++ b/libavcodec/pcx.c @@ -81,7 +81,7 @@ static int pcx_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, bytes_per_scanline; uint8_t *ptr; const uint8_t *buf_end = buf + buf_size; - uint8_t const *bufstart = buf; + const uint8_t *bufstart = buf; uint8_t *scanline; int ret = -1; |