mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Change the warning about unrecognized entries in the dynamic table
to a debug message which is disabled in production builds of the dynamic linker. The condition warned about is normally harmless. PR: bin/12849
This commit is contained in:
parent
15a7acf286
commit
ed5e1b5537
1 changed files with 2 additions and 2 deletions
|
|
@ -550,8 +550,8 @@ digest_dynamic(Obj_Entry *obj)
|
|||
break;
|
||||
|
||||
default:
|
||||
xprintf("Ignored d_tag %d\n",dynp->d_tag);
|
||||
break;
|
||||
dbg("Ignoring d_tag %d = %#x", dynp->d_tag, dynp->d_tag);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue