aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-11-26 21:37:13 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-11-26 21:37:13 +0000
commit4ca857e0e922d0afeb7896ff62e9f47c0c36c535 (patch)
tree03a930475b6ada864aa9d2d72378b66f9a9fbdf0 /tmux.h
parent621dabd44e36c4bfdcd56e9e9730a9e10677e2bd (diff)
downloadrtmux-4ca857e0e922d0afeb7896ff62e9f47c0c36c535.tar.gz
rtmux-4ca857e0e922d0afeb7896ff62e9f47c0c36c535.tar.bz2
rtmux-4ca857e0e922d0afeb7896ff62e9f47c0c36c535.zip
Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to
the rest to reduce lint output.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 61921ae2..90943516 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1790,8 +1790,8 @@ int winlink_next_index(struct winlinks *, int);
u_int winlink_count(struct winlinks *);
struct winlink *winlink_add(struct winlinks *, struct window *, int);
void winlink_remove(struct winlinks *, struct winlink *);
-struct winlink *winlink_next(struct winlinks *, struct winlink *);
-struct winlink *winlink_previous(struct winlinks *, struct winlink *);
+struct winlink *winlink_next(struct winlink *);
+struct winlink *winlink_previous(struct winlink *);
void winlink_stack_push(struct winlink_stack *, struct winlink *);
void winlink_stack_remove(struct winlink_stack *, struct winlink *);
int window_index(struct window *, u_int *);