Francois Gouget : qcap: Make v4l_device_create() static.
Module: wine Branch: master Commit: 80b37cd512547588d07af68ec3771c6781662eb3 URL: https://source.winehq.org/git/wine.git/?a=commit;h=80b37cd512547588d07af68ec... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Aug 27 12:36:49 2021 +0200 qcap: Make v4l_device_create() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/qcap/v4l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/qcap/v4l.c b/dlls/qcap/v4l.c index 82af4dba9e1..12fbe8162e0 100644 --- a/dlls/qcap/v4l.c +++ b/dlls/qcap/v4l.c @@ -401,7 +401,7 @@ static LONG CDECL v4l_device_get_caps_count(struct video_capture_device *device) return device->caps_count; } -struct video_capture_device * CDECL v4l_device_create(USHORT index) +static struct video_capture_device * CDECL v4l_device_create(USHORT index) { struct v4l2_frmsizeenum frmsize = {0}; struct video_capture_device *device;
participants (1)
-
Alexandre Julliard