(stream_seek): Fixed type of size auto variable.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -709,7 +709,7 @@ stream_sequential_write (stream_t stream, char *buf, size_t size) | ... | @@ -709,7 +709,7 @@ stream_sequential_write (stream_t stream, char *buf, size_t size) |
709 | int | 709 | int |
710 | stream_seek (stream_t stream, off_t off, int whence) | 710 | stream_seek (stream_t stream, off_t off, int whence) |
711 | { | 711 | { |
712 | size_t size = 0; | 712 | off_t size = 0; |
713 | size_t pos; | 713 | size_t pos; |
714 | int rc; | 714 | int rc; |
715 | 715 | ... | ... |
-
Please register or sign in to post a comment