diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-10-31 10:35:54 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-10-31 10:35:54 +0000 |
commit | a5f316d8cfbd9f2abf018e3fe766a88820492ac1 (patch) | |
tree | 77ddef44b6e789a62a14b76490ed90539a03e6aa /newlib/libc/stdio/fvwrite.h | |
parent | 566fd12b68d5e9db20f2b808249e130782a64997 (diff) | |
download | cygnal-a5f316d8cfbd9f2abf018e3fe766a88820492ac1.tar.gz cygnal-a5f316d8cfbd9f2abf018e3fe766a88820492ac1.tar.bz2 cygnal-a5f316d8cfbd9f2abf018e3fe766a88820492ac1.zip |
* libc/stdio/fvwrite.h: change type of uio_resid from int to size_t to
fix fwrite() of > 2GByte buffers.
Diffstat (limited to 'newlib/libc/stdio/fvwrite.h')
-rw-r--r-- | newlib/libc/stdio/fvwrite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/fvwrite.h b/newlib/libc/stdio/fvwrite.h index 848d5b261..5c078fe68 100644 --- a/newlib/libc/stdio/fvwrite.h +++ b/newlib/libc/stdio/fvwrite.h @@ -28,7 +28,7 @@ struct __siov { struct __suio { struct __siov *uio_iov; int uio_iovcnt; - int uio_resid; + size_t uio_resid; }; |