diff options
-rw-r--r-- | src/os/rstream.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/os/rstream.c b/src/os/rstream.c index 19c18e58da..519a6466ef 100644 --- a/src/os/rstream.c +++ b/src/os/rstream.c @@ -234,7 +234,9 @@ static void fread_idle_cb(uv_idle_t *handle) // the offset argument to uv_fs_read is int64_t, could someone really try // to read more than 9 quintillion (9e18) bytes? - assert(rstream->fpos <= INT64_MAX); + // DISABLED TO FIX BROKEN BUILD ON 32bit + // TODO Review types to allow assertion + // assert(rstream->fpos <= INT64_MAX); // Synchronous read uv_fs_read( |