Commit 5c50585c authored by cehoyos's avatar cehoyos

Correct type for pcx_rle_decode().

Fixes icc warning #120: return value type does not match the function
type


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13139 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4c692624
...@@ -42,7 +42,7 @@ static av_cold int pcx_init(AVCodecContext *avctx) { ...@@ -42,7 +42,7 @@ static av_cold int pcx_init(AVCodecContext *avctx) {
/** /**
* @return advanced src pointer * @return advanced src pointer
*/ */
static const char *pcx_rle_decode(const uint8_t *src, uint8_t *dst, static const uint8_t *pcx_rle_decode(const uint8_t *src, uint8_t *dst,
unsigned int bytes_per_scanline) { unsigned int bytes_per_scanline) {
unsigned int i = 0; unsigned int i = 0;
unsigned char run, value; unsigned char run, value;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment