diff options
author | 2015-09-14 11:57:22 +0000 | |
---|---|---|
committer | 2015-09-14 11:57:22 +0000 | |
commit | d4cfb52d13633e6e40f4a2868b18e8cb2f10f350 (patch) | |
tree | 3d4db76d909c8c7f965bb75c0c00f1ea84f98207 | |
parent | Wrap <asr.h> so internal calls go direct and all the symbols are weak (diff) | |
download | wireguard-openbsd-d4cfb52d13633e6e40f4a2868b18e8cb2f10f350.tar.xz wireguard-openbsd-d4cfb52d13633e6e40f4a2868b18e8cb2f10f350.zip |
Style nit, int for flags not u_int.
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 | ||||
-rw-r--r-- | usr.bin/tmux/window-copy.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d9efaa19422..16e01fcae01 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.559 2015/09/14 11:34:50 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.560 2015/09/14 11:57:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -2073,7 +2073,7 @@ extern const char window_clock_table[14][5][5]; /* window-copy.c */ extern const struct window_mode window_copy_mode; -void window_copy_init_from_pane(struct window_pane *, u_int); +void window_copy_init_from_pane(struct window_pane *, int); void window_copy_init_for_output(struct window_pane *); void printflike(2, 3) window_copy_add(struct window_pane *, const char *, ...); void window_copy_vadd(struct window_pane *, const char *, va_list); diff --git a/usr.bin/tmux/window-copy.c b/usr.bin/tmux/window-copy.c index fe9cb7808ec..60552f3a608 100644 --- a/usr.bin/tmux/window-copy.c +++ b/usr.bin/tmux/window-copy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-copy.c,v 1.133 2015/09/13 13:31:40 nicm Exp $ */ +/* $OpenBSD: window-copy.c,v 1.134 2015/09/14 11:57:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -208,7 +208,7 @@ window_copy_init(struct window_pane *wp) } void -window_copy_init_from_pane(struct window_pane *wp, u_int scroll_exit) +window_copy_init_from_pane(struct window_pane *wp, int scroll_exit) { struct window_copy_mode_data *data = wp->modedata; struct screen *s = &data->screen; |