[FFmpeg-cvslog] r13139 - trunk/libavcodec/pcx.c
cehoyos
subversion
Mon May 12 21:04:08 CEST 2008
Author: cehoyos
Date: Mon May 12 21:04:08 2008
New Revision: 13139
Log:
Correct type for pcx_rle_decode().
Fixes icc warning #120: return value type does not match the function
type
Modified:
trunk/libavcodec/pcx.c
Modified: trunk/libavcodec/pcx.c
==============================================================================
--- trunk/libavcodec/pcx.c (original)
+++ trunk/libavcodec/pcx.c Mon May 12 21:04:08 2008
@@ -42,7 +42,7 @@ static av_cold int pcx_init(AVCodecConte
/**
* @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 i = 0;
unsigned char run, value;
More information about the ffmpeg-cvslog
mailing list