diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-04-06 22:18:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-04-06 22:18:56 +0000 |
commit | 8ab7fcf7eba8121837a4edf0c214ec0acd31e6bf (patch) | |
tree | 38c80d2b421063ca6b2581f31dfbf15bbca5d754 /tmux.h | |
parent | 129f0dc8934d77084fffcc3a4e11ea97469d97db (diff) | |
download | rtmux-8ab7fcf7eba8121837a4edf0c214ec0acd31e6bf.tar.gz rtmux-8ab7fcf7eba8121837a4edf0c214ec0acd31e6bf.tar.bz2 rtmux-8ab7fcf7eba8121837a4edf0c214ec0acd31e6bf.zip |
|PatchSet 873
|Date: 2011/03/28 20:44:31
|Author: nicm
|Branch: HEAD
|Tag: (none)
|Log:
|Style: uint -> u_int and a missing else.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.614 2011-04-06 22:17:33 nicm Exp $ */ +/* $Id: tmux.h,v 1.615 2011-04-06 22:18:56 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1450,7 +1450,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 *); |