tom-seddon / b2

BBC Micro emulator for Windows, OS X, and Linux
115 stars 13 forks source link

miniz warning #1

Open tom-seddon opened 7 years ago

tom-seddon commented 7 years ago
../submodules/miniz/miniz_zip.c:132:9: warning: Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files. [-W#pragma-messages]

pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.")

I'm not sure large files are that important, but it would be nice to get rid of it. Is a #define missing somewhere, or something?

tom-seddon commented 7 years ago

https://github.com/richgel999/miniz/issues/73

fgnievinski commented 1 year ago

for users not using large files, it seems safe to simply comment out that line:

//#pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.")