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 /paste.c | |
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 'paste.c')
-rw-r--r-- | paste.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ /* Return each item of the stack in turn. */ struct paste_buffer * -paste_walk_stack(struct paste_stack *ps, uint *idx) +paste_walk_stack(struct paste_stack *ps, u_int *idx) { struct paste_buffer *pb; |