From 2723b4b7c085694cade5b6248c56c0986ec8d247 Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 14 Jan 2021 04:56:56 -0500 Subject: [PATCH] [host] xcb: fix xcb_getFrame compile error The argument should have been a pointer. --- 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 9ac70ba9..98089891 100644 --- a/host/platform/Linux/capture/XCB/src/xcb.c +++ b/host/platform/Linux/capture/XCB/src/xcb.c @@ -212,7 +212,7 @@ static CaptureResult xcb_waitFrame(CaptureFrame * frame) return CAPTURE_RESULT_OK; } -static CaptureResult xcb_getFrame(FrameBuffer frame) +static CaptureResult xcb_getFrame(FrameBuffer * frame) { assert(this); assert(this->initialized);