1
0
Fork 0
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:
Yuxuan Shui 2024-02-19 01:23:52 +00:00
parent 239a901bbf
commit d74e026cec
No known key found for this signature in database
GPG key ID: D3A4405BE6CC17F4

View file

@ -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 ============