From: Michael Tremer Date: Tue, 31 Dec 2024 12:11:00 +0000 (+0000) Subject: linter: Don't complain if there is no symbol table X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c0add9cfde697cfb658fbd57afcd611e79c3457;p=people%2Fric9%2Fpakfire.git linter: Don't complain if there is no symbol table Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/linter-file.c b/src/libpakfire/linter-file.c index 553cdcc5e..85c3ca5f7 100644 --- a/src/libpakfire/linter-file.c +++ b/src/libpakfire/linter-file.c @@ -504,7 +504,7 @@ static int pakfire_linter_file_check_ssp(struct pakfire_linter_file* lfile) { // Fetch the symbol table r = pakfire_linter_file_get_elf_section(lfile, SHT_SYMTAB, &symtab, &shdr, &elf_data); if (r) { - ERROR(lfile->ctx, "%s has no symbol table\n", lfile->path); + DEBUG(lfile->ctx, "%s has no symbol table\n", lfile->path); return 1; }