Merge branch 'dev' into dev-0.12

This commit is contained in:
David Reid
2025-03-05 15:02:43 +10:00
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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">
+1 -1
View File
@@ -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);