summaryrefslogtreecommitdiff
path: root/libavcodec/targaenc.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2009-10-01 12:21:54 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2009-10-01 12:21:54 +0000
commit05ec0c00120526e039f35c7900b18fab9766ef69 (patch)
treea56fb0788b4581207b837d8c42f9475b13e4cd6f /libavcodec/targaenc.c
parente23dd95dc2cc1af813196c73630a66b498813f2a (diff)
Fix indentation after last commit.
Originally committed as revision 20121 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/targaenc.c')
-rw-r--r--libavcodec/targaenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c
index 9e481e6027..82d7fe3599 100644
--- a/libavcodec/targaenc.c
+++ b/libavcodec/targaenc.c
@@ -121,7 +121,7 @@ static int targa_encode_frame(AVCodecContext *avctx,
/* try RLE compression */
if (avctx->coder_type != FF_CODER_TYPE_RAW)
- datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
+ datasize = targa_encode_rle(out, picsize, p, bpp, avctx->width, avctx->height);
/* if that worked well, mark the picture as RLE compressed */
if(datasize >= 0)