Commit d440e646 d440e6468d45d58a0a139fadb8d25ff2b35349b2 by Sergey Poznyakoff

(stream_seek): Fixed type of size auto variable.

1 parent 61ca31c9
......@@ -709,7 +709,7 @@ stream_sequential_write (stream_t stream, char *buf, size_t size)
int
stream_seek (stream_t stream, off_t off, int whence)
{
size_t size = 0;
off_t size = 0;
size_t pos;
int rc;
......