fix seeking in WebMs > 2GB on i686
This commit is contained in:
parent
d47b90be39
commit
feb469d863
1 changed files with 2 additions and 2 deletions
|
@ -223,13 +223,13 @@ stdio_read(void * p, size_t length, void * fp)
|
||||||
static int
|
static int
|
||||||
stdio_seek(int64_t offset, int whence, void * fp)
|
stdio_seek(int64_t offset, int whence, void * fp)
|
||||||
{
|
{
|
||||||
return fseek(fp, offset, whence);
|
return fseeko(fp, offset, whence);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int64_t
|
static int64_t
|
||||||
stdio_tell(void * fp)
|
stdio_tell(void * fp)
|
||||||
{
|
{
|
||||||
return ftell(fp);
|
return ftello(fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue