diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-03-28 19:44:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-03-28 19:44:31 +0000 |
commit | fa6abac98d03891f4651ca6d23da11f20fa35ace (patch) | |
tree | 712bfa055f1c1c67ef8ccd2de65964961f81b2c8 /tmux.h | |
parent | 71e8e26ccc85a07c59d9b607c0e248376fa0a447 (diff) | |
download | rtmux-fa6abac98d03891f4651ca6d23da11f20fa35ace.tar.gz rtmux-fa6abac98d03891f4651ca6d23da11f20fa35ace.tar.bz2 rtmux-fa6abac98d03891f4651ca6d23da11f20fa35ace.zip |
Style: uint -> u_int and a missing else.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 *); |