From 1e99f060b1397299290b06cd3726c08865bb3c6b Mon Sep 17 00:00:00 2001 From: pfg Date: Tue, 22 Jul 2014 16:39:11 +0000 Subject: Mostly cosmetic cleanups. In fputs() avoid implcit casting on iov.iov_len. MFC after: 3 days --- lib/libc/stdio/puts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdio/puts.c') diff --git a/lib/libc/stdio/puts.c b/lib/libc/stdio/puts.c index 5ee7fc1..124afc7 100644 --- a/lib/libc/stdio/puts.c +++ b/lib/libc/stdio/puts.c @@ -51,12 +51,12 @@ int puts(char const *s) { int retval; - size_t c = strlen(s); + size_t c; struct __suio uio; struct __siov iov[2]; iov[0].iov_base = (void *)s; - iov[0].iov_len = c; + iov[0].iov_len = c = strlen(s); iov[1].iov_base = "\n"; iov[1].iov_len = 1; uio.uio_resid = c + 1; -- cgit v1.1