summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-03-28 19:44:31 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-03-28 19:44:31 +0000
commitfa6abac98d03891f4651ca6d23da11f20fa35ace (patch)
tree712bfa055f1c1c67ef8ccd2de65964961f81b2c8 /tmux.h
parent71e8e26ccc85a07c59d9b607c0e248376fa0a447 (diff)
Style: uint -> u_int and a missing else.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 1333bdf0..5d271a57 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1454,7 +1454,7 @@ void tty_keys_free(struct tty *);
int tty_keys_next(struct tty *);
/* paste.c */
-struct paste_buffer *paste_walk_stack(struct paste_stack *, uint *);
+struct paste_buffer *paste_walk_stack(struct paste_stack *, u_int *);
struct paste_buffer *paste_get_top(struct paste_stack *);
struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
int paste_free_top(struct paste_stack *);