mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
backend: fix root_change declaration
Don't know why the return type was `void *`, should be `void`. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
parent
239a901bbf
commit
d74e026cec
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ struct backend_operations {
|
|||
/// remain valid.
|
||||
///
|
||||
/// Optional
|
||||
void *(*root_change)(backend_t *backend_data, session_t *ps);
|
||||
void (*root_change)(backend_t *backend_data, session_t *ps);
|
||||
|
||||
// =========== Rendering ============
|
||||
|
||||
|
|
Loading…
Reference in a new issue