summaryrefslogtreecommitdiff
path: root/libavcodec/pnm.c
diff options
context:
space:
mode:
authorIvo van Poorten <ivop@euronet.nl>2007-04-10 09:16:35 +0000
committerIvo van Poorten <ivop@euronet.nl>2007-04-10 09:16:35 +0000
commit6db140ddb4202e603efb5e2c81575d38d5f406f1 (patch)
tree8435d04ea8cfdb37896c4fabf566df396a7e18ea /libavcodec/pnm.c
parent201df5a19f3c8773b0da06627dfc51c46a5d40cb (diff)
cosmetics after last commit
Originally committed as revision 8705 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r--libavcodec/pnm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c
index ffd5d06f7c..e2ee93251d 100644
--- a/libavcodec/pnm.c
+++ b/libavcodec/pnm.c
@@ -218,7 +218,7 @@ static int pnm_decode_frame(AVCodecContext *avctx,
return -1;
for(i = 0; i < avctx->height; i++) {
if (!upgrade)
- memcpy(ptr, s->bytestream, n);
+ memcpy(ptr, s->bytestream, n);
else if (upgrade == 1) {
unsigned int j, f = (255*128 + s->maxval/2) / s->maxval;
for (j=0; j<n; j++)