]> git.ipfire.org Git - people/ric9/pakfire.git/commitdiff
linter: Don't complain if there is no symbol table
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 31 Dec 2024 12:11:00 +0000 (12:11 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 31 Dec 2024 12:11:00 +0000 (12:11 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/linter-file.c

index 553cdcc5e1e1d877b782e01b6258f6c930ef6885..85c3ca5f7c22c843795f8b1f7eee9fa48ffa73e1 100644 (file)
@@ -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;
        }