aboutsummaryrefslogtreecommitdiffstats
path: root/libc/stdio/fvwrite.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/fvwrite.c')
-rw-r--r--libc/stdio/fvwrite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/fvwrite.c b/libc/stdio/fvwrite.c
index bbea6728c..ee394006d 100644
--- a/libc/stdio/fvwrite.c
+++ b/libc/stdio/fvwrite.c
@@ -83,7 +83,7 @@ __sfvwrite(FILE *fp, struct __suio *uio)
do {
GETIOV(;);
#if 1 /* BIONIC: don't limit to 1KB writes */
- w = (*fp->_write)(fp->_cookie, p, len);
+ w = (*fp->_write)(fp->_cookie, p, len);
#else
w = (*fp->_write)(fp->_cookie, p, MIN(len, BUFSIZ2));
#endif
@@ -183,7 +183,7 @@ __sfvwrite(FILE *fp, struct __suio *uio)
} else if (s >= (w = fp->_bf._size)) {
w = (*fp->_write)(fp->_cookie, p, w);
if (w <= 0)
- goto err;
+ goto err;
} else {
w = s;
COPY(w);