diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-06 14:06:44 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-06 14:06:44 +0200 |
commit | db18b3d6e6fa83eef862023d4c18bbe1113df075 (patch) | |
tree | e1a8b10e07402e17bf65f8dcb3f61f1c32df7b0e /libavcodec/samidec.c | |
parent | 26786f43d7d58e82f0d7003837d6893f3180b81a (diff) | |
download | ffmpeg-db18b3d6e6fa83eef862023d4c18bbe1113df075.tar.gz |
avcodec/samidec: small indent fix
Diffstat (limited to 'libavcodec/samidec.c')
-rw-r--r-- | libavcodec/samidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/samidec.c b/libavcodec/samidec.c index e87d9dd1ab..95f35abd42 100644 --- a/libavcodec/samidec.c +++ b/libavcodec/samidec.c @@ -91,7 +91,7 @@ static int sami_paragraph_to_ass(AVCodecContext *avctx, const char *src) break; } if (!av_strncasecmp(p, "<BR", 3)) { - av_bprintf(dst, "\\N"); + av_bprintf(dst, "\\N"); p++; while (*p && *p != '>') p++; |