diff options
Diffstat (limited to 'third_party/jpeg-xl/examples/decode_oneshot.cc')
-rw-r--r-- | third_party/jpeg-xl/examples/decode_oneshot.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/jpeg-xl/examples/decode_oneshot.cc b/third_party/jpeg-xl/examples/decode_oneshot.cc index a24bd73bfb..b7e17c21a4 100644 --- a/third_party/jpeg-xl/examples/decode_oneshot.cc +++ b/third_party/jpeg-xl/examples/decode_oneshot.cc @@ -169,7 +169,7 @@ bool LoadFile(const char* filename, std::vector<uint8_t>* out) { return false; } - long size = ftell(file); + long size = ftell(file); // NOLINT // Avoid invalid file or directory. if (size >= LONG_MAX || size < 0) { fclose(file); |