summaryrefslogtreecommitdiff
path: root/libavcodec/pcx.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2009-10-27 15:05:24 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2009-10-27 15:05:24 +0000
commitff54bb975a1f3cf82b69bc3903875f48f7755a4e (patch)
treeeb8e0d03082bd1ea22897dd29f170d2b56186436 /libavcodec/pcx.c
parent25b6d0bc697abce3c2584205ce6efc592cfe3aec (diff)
Fix indentation.
Originally committed as revision 20378 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 51c9acf247..bbca8bce7a 100644
--- a/libavcodec/pcx.c
+++ b/libavcodec/pcx.c
@@ -72,7 +72,7 @@ static void pcx_palette(const uint8_t **src, uint32_t *dst, unsigned int pallen)
for (i=0; i<pallen; i++)
*dst++ = bytestream_get_be24(src);
if (pallen < 256)
- memset(dst, 0, (256 - pallen) * sizeof(*dst));
+ memset(dst, 0, (256 - pallen) * sizeof(*dst));
}
static int pcx_decode_frame(AVCodecContext *avctx, void *data, int *data_size,