mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-22 22:01:46 +00:00
[host] xcb: fix xcb_create signature error
Should have two arguments instead of zero.
This commit is contained in:
parent
2723b4b7c0
commit
ed9e3d253b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue