mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-27 02:34:03 +02:00
Merge branch 'dev' into dev-0.12
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
|
||||
<p align="center">
|
||||
<a href="https://discord.gg/9vpqbjU"><img src="https://img.shields.io/discord/712952679415939085?label=discord&logo=discord&style=flat-square" alt="discord"></a>
|
||||
<a href="https://fosstodon.org/@mackron"><img src="https://img.shields.io/mastodon/follow/109293691403797709?color=blue&domain=https%3A%2F%2Ffosstodon.org&label=mastodon&logo=mastodon&style=flat-square" alt="mastodon"></a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
|
||||
Vendored
+1
-1
@@ -4951,7 +4951,7 @@ static fs_result fs_file_seek_stdio(fs_file* pFile, fs_int64 offset, fs_seek_ori
|
||||
#else
|
||||
/* No _fseeki64() so restrict to 31 bits. */
|
||||
if (origin > 0x7FFFFFFF) {
|
||||
return ERANGE;
|
||||
return FS_OUT_OF_RANGE;
|
||||
}
|
||||
|
||||
result = fseek(pFileStdio->pFile, (int)offset, whence);
|
||||
|
||||
Reference in New Issue
Block a user