diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-11-18 16:01:23 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-11-18 16:01:23 +0000 |
commit | 7fe8edc3962d5c30bf87677ecb2cf8633404f63c (patch) | |
tree | d354de9a04867168c1b296e15c556231f33c03f4 /window-copy.c | |
parent | f8a1f8843c91ebb1262ec6a000fd495eeb27e179 (diff) | |
parent | 577c0e3e5a79e9f1f860487bc3f411d26758f026 (diff) | |
download | rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.tar.gz rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.tar.bz2 rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window-copy.c')
-rw-r--r-- | window-copy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/window-copy.c b/window-copy.c index a28cdecc..37025302 100644 --- a/window-copy.c +++ b/window-copy.c @@ -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; |