[host] xcb: fix xcb_getFrame compile error

The argument should have been a pointer.
This commit is contained in:
Quantum 2021-01-14 04:56:56 -05:00 committed by Geoffrey McRae
parent 69a4dffddc
commit 2723b4b7c0

View File

@ -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);