summaryrefslogtreecommitdiffstats
path: root/paste.c
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 /paste.c
parent71e8e26ccc85a07c59d9b607c0e248376fa0a447 (diff)
Style: uint -> u_int and a missing else.
Diffstat (limited to 'paste.c')
-rw-r--r--paste.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste.c b/paste.c
index a5489552..cc43d6e9 100644
--- a/paste.c
+++ b/paste.c
@@ -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;