mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-17 00:51:36 +02:00
Style nit, int for flags not u_int.
This commit is contained in:
2
tmux.h
2
tmux.h
@ -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);
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user