From ed9e3d253b46b6e13c032564762dab1d0be1187c Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 14 Jan 2021 04:59:02 -0500 Subject: [PATCH] [host] xcb: fix xcb_create signature error Should have two arguments instead of zero. --- host/platform/Linux/capture/XCB/src/xcb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/platform/Linux/capture/XCB/src/xcb.c b/host/platform/Linux/capture/XCB/src/xcb.c index 98089891..699c5a33 100644 --- a/host/platform/Linux/capture/XCB/src/xcb.c +++ b/host/platform/Linux/capture/XCB/src/xcb.c @@ -62,7 +62,7 @@ static const char * xcb_getName(void) return "XCB"; } -static bool xcb_create(void) +static bool xcb_create(CaptureGetPointerBuffer getPointerBufferFn, CapturePostPointerBuffer postPointerBufferFn) { assert(!this); this = (struct xcb *)calloc(sizeof(struct xcb), 1);