diff options
Diffstat (limited to 'testing/test_support.cpp')
-rw-r--r-- | testing/test_support.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/test_support.cpp b/testing/test_support.cpp index 2b6f436c32..16ae5b28b9 100644 --- a/testing/test_support.cpp +++ b/testing/test_support.cpp @@ -84,19 +84,19 @@ std::unique_ptr<char, pdfium::FreeDeleter> GetFileContents(const char* filename, fprintf(stderr, "Failed to open: %s\n", filename); return nullptr; } - (void)fseek(file, 0, SEEK_END); + static_cast<void>(fseek(file, 0, SEEK_END)); size_t file_length = ftell(file); if (!file_length) { return nullptr; } - (void)fseek(file, 0, SEEK_SET); + static_cast<void>(fseek(file, 0, SEEK_SET)); std::unique_ptr<char, pdfium::FreeDeleter> buffer( static_cast<char*>(malloc(file_length))); if (!buffer) { return nullptr; } size_t bytes_read = fread(buffer.get(), 1, file_length, file); - (void)fclose(file); + static_cast<void>(fclose(file)); if (bytes_read != file_length) { fprintf(stderr, "Failed to read: %s\n", filename); return nullptr; |