summaryrefslogtreecommitdiff
path: root/libavcodec/v4l2_m2m_enc.c
diff options
context:
space:
mode:
authorAndriy Gelman <andriy.gelman@gmail.com>2020-02-16 14:31:44 -0500
committerMark Thompson <sw@jkqxz.net>2020-02-16 20:29:32 +0000
commit8578433d203cf3e2a902aebb61c8260e82c750d8 (patch)
treed4cb64a620503219563a63178dee8233f9236944 /libavcodec/v4l2_m2m_enc.c
parent17ece3f74531cca47a8b90f905f5160fc3fa6ac0 (diff)
avcodec/v4l2_m2m: Fix typo in log message and cosmetics
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
Diffstat (limited to 'libavcodec/v4l2_m2m_enc.c')
-rw-r--r--libavcodec/v4l2_m2m_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v4l2_m2m_enc.c b/libavcodec/v4l2_m2m_enc.c
index 98b9dfc2c0..c9f1741bfd 100644
--- a/libavcodec/v4l2_m2m_enc.c
+++ b/libavcodec/v4l2_m2m_enc.c
@@ -83,7 +83,7 @@ static inline int v4l2_get_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed i
ret = ioctl(s->fd, VIDIOC_G_EXT_CTRLS, &ctrls);
if (ret < 0) {
- av_log(s->avctx, AV_LOG_WARNING, "Failed to set %s\n", name);
+ av_log(s->avctx, AV_LOG_WARNING, "Failed to get %s\n", name);
return ret;
}