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:
John Polstra 1999-09-04 20:14:48 +00:00
parent 15a7acf286
commit ed5e1b5537
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50928

View File

@ -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;
}
}