mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Use __unused rather than rolling our own.
This commit is contained in:
@ -2232,7 +2232,7 @@ window_copy_rectangle_toggle(struct window_pane *wp)
|
||||
}
|
||||
|
||||
void
|
||||
window_copy_start_drag(struct client *c, unused struct mouse_event *m)
|
||||
window_copy_start_drag(struct client *c, struct mouse_event *m)
|
||||
{
|
||||
struct window_pane *wp;
|
||||
u_int x, y;
|
||||
@ -2253,7 +2253,7 @@ window_copy_start_drag(struct client *c, unused struct mouse_event *m)
|
||||
}
|
||||
|
||||
void
|
||||
window_copy_drag_update(unused struct client *c, struct mouse_event *m)
|
||||
window_copy_drag_update(__unused struct client *c, struct mouse_event *m)
|
||||
{
|
||||
struct window_pane *wp;
|
||||
struct window_copy_mode_data *data;
|
||||
@ -2274,7 +2274,7 @@ window_copy_drag_update(unused struct client *c, struct mouse_event *m)
|
||||
}
|
||||
|
||||
void
|
||||
window_copy_drag_release(unused struct client *c, struct mouse_event *m)
|
||||
window_copy_drag_release(__unused struct client *c, struct mouse_event *m)
|
||||
{
|
||||
struct window_pane *wp;
|
||||
|
||||
|
Reference in New Issue
Block a user