mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Fix an always-false warning
This commit is contained in:
+1
-1
@@ -59538,7 +59538,7 @@ static ma_result ma_default_vfs_seek__stdio(ma_vfs* pVFS, ma_vfs_file file, ma_i
|
|||||||
result = _fseeki64((FILE*)file, offset, whence);
|
result = _fseeki64((FILE*)file, offset, whence);
|
||||||
#else
|
#else
|
||||||
/* No _fseeki64() so restrict to 31 bits. */
|
/* No _fseeki64() so restrict to 31 bits. */
|
||||||
if (origin > 0x7FFFFFFF) {
|
if (offset > 0x7FFFFFFF) {
|
||||||
return MA_OUT_OF_RANGE;
|
return MA_OUT_OF_RANGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user