mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
worker: remove unused parameter from remove_shadow
Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
parent
e2a3d57735
commit
4ef2618f52
@ -1050,7 +1050,7 @@ static void red_worker_drawable_unref(RedWorker *worker, Drawable *drawable)
|
||||
worker->drawable_count--;
|
||||
}
|
||||
|
||||
static inline void remove_shadow(RedWorker *worker, DrawItem *item)
|
||||
static inline void remove_shadow(DrawItem *item)
|
||||
{
|
||||
Shadow *shadow;
|
||||
|
||||
@ -1131,7 +1131,7 @@ static inline void current_remove_drawable(RedWorker *worker, Drawable *item)
|
||||
if (!item->stream) {
|
||||
red_add_item_trace(worker, item);
|
||||
}
|
||||
remove_shadow(worker, &item->tree_item);
|
||||
remove_shadow(&item->tree_item);
|
||||
ring_remove(&item->tree_item.base.siblings_link);
|
||||
ring_remove(&item->list_link);
|
||||
ring_remove(&item->surface_list_link);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user