Re: [PATCH] srcfiles: fix unused variable BUFFER_SIZE

2024-03-19 Thread Frank Ch. Eigler
Hi - > The const variable BUFFER_SIZE is used only on the zip_files > function witch is only available with LIBARCHIVE. Thanks, merged as obvious. - FChE

[PATCH] srcfiles: fix unused variable BUFFER_SIZE

2024-03-19 Thread Jose Quaresma
The const variable BUFFER_SIZE is used only on the zip_files function witch is only available with LIBARCHIVE. | ../../elfutils-0.191/src/srcfiles.cxx:81:18: error: unused variable 'BUFFER_SIZE' [-Werror,-Wunused-const-variable] |81 | constexpr size_t BUFFER_SIZE = 8192; | |