Fix an always-false warning

This commit is contained in:
raduetsya
2024-07-26 15:00:10 +03:00
committed by David Reid
parent 8036ac3781
commit e1328d9d8a
+1 -1
View File
@@ -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;
} }