From fdffefb8032922ce7ffe4c00816072a8ff2148fc Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 17 Feb 2017 22:30:53 +0000 Subject: More types changes New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet --- src/libstddjb/buffer_getv.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/libstddjb/buffer_getv.c') diff --git a/src/libstddjb/buffer_getv.c b/src/libstddjb/buffer_getv.c index b3d237e..358de01 100644 --- a/src/libstddjb/buffer_getv.c +++ b/src/libstddjb/buffer_getv.c @@ -1,12 +1,13 @@ /* ISC license. */ +#include +#include #include #include -#include -int buffer_getv (buffer *b, siovec_t const *v, unsigned int n) +ssize_t buffer_getv (buffer *b, struct iovec const *v, unsigned int n) { - unsigned int w = 0 ; - register int r = unsanitize_read(buffer_getvall(b, v, n, &w)) ; + size_t w = 0 ; + ssize_t r = unsanitize_read(buffer_getvall(b, v, n, &w)) ; return r <= 0 ? r : w ; } -- cgit v1.2.3