diff options
author | Aman Gupta <aman@tmm1.net> | 2019-08-28 12:27:20 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2019-09-02 15:17:57 -0700 |
commit | e9cc873636abe4beeae957f2052f5445a33936bf (patch) | |
tree | 1f5b82f13d93e54775595e7a0476d9a14f3c2030 | |
parent | b6c6f56e385cb421bdfeab28f15346aa6892c682 (diff) | |
download | ffmpeg-e9cc873636abe4beeae957f2052f5445a33936bf.tar.gz |
avcodec/v4l2_m2m: fix minor indentation issue
-rw-r--r-- | libavcodec/v4l2_m2m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v4l2_m2m.c b/libavcodec/v4l2_m2m.c index 0bd6cc0f92..48104d01d2 100644 --- a/libavcodec/v4l2_m2m.c +++ b/libavcodec/v4l2_m2m.c @@ -337,7 +337,7 @@ int ff_v4l2_m2m_codec_end(AVCodecContext *avctx) ret = ff_v4l2_context_set_status(&s->output, VIDIOC_STREAMOFF); if (ret) - av_log(avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF %s\n", s->output.name); + av_log(avctx, AV_LOG_ERROR, "VIDIOC_STREAMOFF %s\n", s->output.name); ret = ff_v4l2_context_set_status(&s->capture, VIDIOC_STREAMOFF); if (ret) |