diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-08-31 00:43:17 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-08-31 00:43:17 +0200 |
commit | 6dbb64fdccafe846aaec75d3784f7ad49d8af5df (patch) | |
tree | 5d0bad59f30b59073f94890a5323053ad6576dcf /libavcodec | |
parent | 9305bdc68f0976e0c5870f0d0557a45fe13bb0f6 (diff) | |
download | ffmpeg-6dbb64fdccafe846aaec75d3784f7ad49d8af5df.tar.gz |
lavc/v4l2_m2m_enc: Add missing braces around initializers.
Fixes the following warnings:
libavcodec/v4l2_m2m_enc.c:51:12: warning: missing braces around initializer
libavcodec/v4l2_m2m_enc.c:71:12: warning: missing braces around initializer
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/v4l2_m2m_enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/v4l2_m2m_enc.c b/libavcodec/v4l2_m2m_enc.c index 4c9ea1fd92..636e1a96dd 100644 --- a/libavcodec/v4l2_m2m_enc.c +++ b/libavcodec/v4l2_m2m_enc.c @@ -48,7 +48,7 @@ static inline void v4l2_set_timeperframe(V4L2m2mContext *s, unsigned int num, un static inline void v4l2_set_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed int value, const char *name) { - struct v4l2_ext_controls ctrls = { 0 }; + struct v4l2_ext_controls ctrls = { { 0 } }; struct v4l2_ext_control ctrl = { 0 }; /* set ctrls */ @@ -68,7 +68,7 @@ static inline void v4l2_set_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed static inline int v4l2_get_ext_ctrl(V4L2m2mContext *s, unsigned int id, signed int *value, const char *name) { - struct v4l2_ext_controls ctrls = { 0 }; + struct v4l2_ext_controls ctrls = { { 0 } }; struct v4l2_ext_control ctrl = { 0 }; int ret; |