Commit 3359912d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

v4l2: fix warning on old systems

parent 94d47f83
...@@ -523,9 +523,9 @@ static int SetupStandard (vlc_object_t *obj, int fd, ...@@ -523,9 +523,9 @@ static int SetupStandard (vlc_object_t *obj, int fd,
return 0; return 0;
} }
#else #else
(void) input;
msg_Dbg (obj, "video standard selection unknown"); msg_Dbg (obj, "video standard selection unknown");
#endif #endif
v4l2_std_id std = var_InheritStandard (obj, CFG_PREFIX"standard"); v4l2_std_id std = var_InheritStandard (obj, CFG_PREFIX"standard");
if (std == V4L2_STD_UNKNOWN) if (std == V4L2_STD_UNKNOWN)
{ {
......
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