summaryrefslogtreecommitdiffstats
path: root/paste.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2011-04-06 22:18:56 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2011-04-06 22:18:56 +0000
commit8ab7fcf7eba8121837a4edf0c214ec0acd31e6bf (patch)
tree38c80d2b421063ca6b2581f31dfbf15bbca5d754 /paste.c
parent129f0dc8934d77084fffcc3a4e11ea97469d97db (diff)
|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 'paste.c')
-rw-r--r--paste.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/paste.c b/paste.c
index 004c73f3..7c59d031 100644
--- a/paste.c
+++ b/paste.c
@@ -1,4 +1,4 @@
-/* $Id: paste.c,v 1.16 2010-12-30 22:39:49 tcunha Exp $ */
+/* $Id: paste.c,v 1.17 2011-04-06 22:18:56 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -30,7 +30,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;