cast return value to void to indicate that we want to ignore the result

This commit is contained in:
Axel Kohlmeyer
2024-08-13 12:36:43 -04:00
parent b479cf6c68
commit 0f792b0434
22 changed files with 56 additions and 56 deletions

View File

@ -542,7 +542,7 @@ void ReaderNative::skip_buf(size_t size)
{
bigint pos = platform::ftell(fp);
pos += size;
platform::fseek(fp,pos);
(void) platform::fseek(fp,pos);
}
bool ReaderNative::is_known_magic_str() const