[Bug debuginfod/31103] periodically malloc_trim()

2024-03-19 Thread dichen at redhat dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=31103 --- Comment #12 from Di Chen --- @fche no problem, thanks for merging it :D -- You are receiving this mail because: You are on the CC list for the bug.

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

[Bug debuginfod/31103] periodically malloc_trim()

2024-03-19 Thread fche at redhat dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=31103 Frank Ch. Eigler changed: What|Removed |Added Resolution|--- |FIXED Status|NEW

[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; | |