Commit e1328d9d authored by raduetsya's avatar raduetsya Committed by David Reid

Fix an always-false warning

parent 8036ac37
...@@ -59538,7 +59538,7 @@ static ma_result ma_default_vfs_seek__stdio(ma_vfs* pVFS, ma_vfs_file file, ma_i ...@@ -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;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment