Commit 4f1d7cc0 authored by Michael Niedermayer's avatar Michael Niedermayer

bktr: fix warning: missing braces around initializer

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 925c9f44
......@@ -101,7 +101,7 @@ static av_cold int bktr_init(const char *video_device, int width, int height,
long ioctl_frequency;
char *arg;
int c;
struct sigaction act = { 0 }, old;
struct sigaction act = { {0} }, old;
if (idev < 0 || idev > 4)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment