Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-03-22 17:33:28 +0300
committerDiego Biurrun <diego@biurrun.de>2016-03-23 11:25:30 +0300
commit8dead2aaca4aa8b84b77b05745755afb56b7d37a (patch)
tree26639cd6652d303f57f2646d160bb9c89b593ac7 /libavcodec/pcx.c
parentd909f43b5c773a73c8d526638744547ba4aa8c59 (diff)
Move const qualifier before type name
Diffstat (limited to 'libavcodec/pcx.c')
-rw-r--r--libavcodec/pcx.c2
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;