mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-03-15 21:05:37 +00:00
xcb: Fixed return value of xcb_deinit
`xcb_deinit` returns `true` to fit the capture interface standard.
This commit is contained in:
parent
2824238b4d
commit
fbf294efd9
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ static bool xcb_deinit(void)
|
|||
}
|
||||
|
||||
this->initialized = false;
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void xcb_free(void)
|
||||
|
|
Loading…
Add table
Reference in a new issue