[host] xcb: fix xcb_create signature error

Should have two arguments instead of zero.
This commit is contained in:
Quantum 2021-01-14 04:59:02 -05:00 committed by Geoffrey McRae
parent 2723b4b7c0
commit ed9e3d253b

View file

@ -62,7 +62,7 @@ static const char * xcb_getName(void)
return "XCB"; return "XCB";
} }
static bool xcb_create(void) static bool xcb_create(CaptureGetPointerBuffer getPointerBufferFn, CapturePostPointerBuffer postPointerBufferFn)
{ {
assert(!this); assert(!this);
this = (struct xcb *)calloc(sizeof(struct xcb), 1); this = (struct xcb *)calloc(sizeof(struct xcb), 1);