diff options
author | Reimar Döffinger | 2009-05-31 11:34:19 +0000 |
---|---|---|
committer | Reimar Döffinger | 2009-05-31 11:34:19 +0000 |
commit | 7c204216617fa2bfec7382c01e0643caec754fb2 (patch) | |
tree | 2a05a4c3ad2bd424c581714e0148d98a971a53be /libavcodec/lcldec.c | |
parent | 7a15b25827980281a061041ebf83d9a1ed6de9be (diff) |
Use int-size types instead of char where it makes no difference.
Originally committed as revision 19060 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lcldec.c')
-rw-r--r-- | libavcodec/lcldec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c index 66d1878045..7663655080 100644 --- a/libavcodec/lcldec.c +++ b/libavcodec/lcldec.c @@ -81,8 +81,8 @@ static unsigned int mszh_decomp(const unsigned char * srcptr, int srclen, unsign unsigned char *destptr_bak = destptr; unsigned char *destptr_end = destptr + destsize; const unsigned char *srcptr_end = srcptr + srclen; - unsigned char mask = *srcptr++; - unsigned char maskbit = 0x80; + unsigned mask = *srcptr++; + unsigned maskbit = 0x80; unsigned int ofs, cnt; while (srcptr < srcptr_end && destptr < destptr_end) { |