From 8d96a006d836da29f792f3b5e8211163e85b03fc Mon Sep 17 00:00:00 2001 From: obrien Date: Tue, 7 Nov 2000 22:19:23 +0000 Subject: Use size_t rather than a 16-bit data type fo the length. PR: 9350 Submitted by: Danny J. Zerkel --- lib/libc/db/recno/rec_get.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/libc/db/recno') diff --git a/lib/libc/db/recno/rec_get.c b/lib/libc/db/recno/rec_get.c index 0a8b880..3571d79 100644 --- a/lib/libc/db/recno/rec_get.c +++ b/lib/libc/db/recno/rec_get.c @@ -35,6 +35,10 @@ static char sccsid[] = "@(#)rec_get.c 8.9 (Berkeley) 8/18/94"; #endif /* LIBC_SCCS and not lint */ +#if !defined(lint) +static char rcsid[] = "@(#)$FreeBSD$"; +#endif + #include #include @@ -181,7 +185,7 @@ __rec_vpipe(t, top) { DBT data; recno_t nrec; - indx_t len; + size_t len; size_t sz; int bval, ch; u_char *p; -- cgit v1.1